From b605fe2d1987741829789597427f96b9b17c9251 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 16 Aug 2025 04:12:24 +0000 Subject: [PATCH] Initialize toast hook in Profile component cgen-4e3bad44d3f544089ec3134cd9550262 --- client/pages/Profile.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/pages/Profile.tsx b/client/pages/Profile.tsx index e8c165a4..74cbf6f6 100644 --- a/client/pages/Profile.tsx +++ b/client/pages/Profile.tsx @@ -66,6 +66,7 @@ interface CrossSiteCommunication { export default function Profile() { const navigate = useNavigate(); const { user, profile, loading: authLoading, updateProfile } = useAuth(); + const { success: toastSuccess, error: toastError } = useAethexToast(); const [isLoading, setIsLoading] = useState(true); const [isSaving, setIsSaving] = useState(false);