Skip to content

Commit

Permalink
fix: missing prop
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher committed Sep 19, 2024
1 parent ed5ea8f commit 83e5530
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import UpdateProfileInformationForm from './Partials/UpdateProfileInformationFor
import {Head} from '@inertiajs/react';
import {PageProps, Socialstream} from '@/types';

export default function Edit({mustVerifyEmail, status}: PageProps<{ mustVerifyEmail: boolean, status?: string }>) {
export default function Edit({mustVerifyEmail, status, socialstream}: PageProps<{ mustVerifyEmail: boolean, status?: string }>) {
return (
<AuthenticatedLayout
header={<h2 className="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">Profile</h2>}
Expand Down

0 comments on commit 83e5530

Please sign in to comment.