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);