Skip to content

Commit 3a831b5

Browse files
authored
Remove invalid AuthenticatedLayout props from inertia docs (#85)
1 parent 6c98a17 commit 3a831b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/docs/inertia/creating-chirps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export default function Index({ auth }) {
293293
};
294294

295295
return (
296-
<AuthenticatedLayout user={auth.user}>
296+
<AuthenticatedLayout>
297297
<Head title="Chirps" />
298298

299299
<div className="max-w-2xl mx-auto p-4 sm:p-6 lg:p-8">

resources/docs/inertia/showing-chirps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export default function Index({ auth, chirps }) {// [tl! add]
239239
};
240240

241241
return (
242-
<AuthenticatedLayout auth={auth}>
242+
<AuthenticatedLayout>
243243
<Head title="Chirps" />
244244

245245
<div className="max-w-2xl mx-auto p-4 sm:p-6 lg:p-8">

0 commit comments

Comments
 (0)