Skip to content

Commit

Permalink
fix(contexts): align type with header
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Sep 25, 2024
1 parent a95b077 commit cc658d3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import {
import { useFirebaseApp } from './FirebaseAppProvider';

type AuthContextValue = {
currentUser: User | null;
auth: Auth;
provider: OAuthProvider;
currentUser?: User;
login: () => Promise<UserCredential>;
logout: () => Promise<void>;
provider: OAuthProvider;
auth: Auth;
};

type FirebaseAuthProviderProps = {
Expand Down

0 comments on commit cc658d3

Please sign in to comment.