diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index 2f40df36..0c75d9a6 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -58,6 +58,7 @@ const missingProviderFallback: AuthContextType = { session: null, loading: true, profileComplete: false, + linkedProviders: [], signIn: async () => { throw new Error( "AuthProvider is not mounted. Please ensure your app is wrapped with .", @@ -73,6 +74,16 @@ const missingProviderFallback: AuthContextType = { "AuthProvider is not mounted. Please ensure your app is wrapped with .", ); }, + linkProvider: async () => { + throw new Error( + "AuthProvider is not mounted. Please ensure your app is wrapped with .", + ); + }, + unlinkProvider: async () => { + throw new Error( + "AuthProvider is not mounted. Please ensure your app is wrapped with .", + ); + }, signOut: async () => { throw new Error( "AuthProvider is not mounted. Please ensure your app is wrapped with .",