diff --git a/src/contexts/authcontext.tsx b/src/contexts/authcontext.tsx index 4fefda0..f505208 100644 --- a/src/contexts/authcontext.tsx +++ b/src/contexts/authcontext.tsx @@ -8,6 +8,7 @@ const InitialAuthState: IAuthState = { user: { vatsimId: '', fullName: '', + radarScopeKey: '', administrator: false, airportConfigurationAccess: [], }, diff --git a/src/types/index.ts b/src/types/index.ts index 7334012..6e10daf 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -7,6 +7,7 @@ export interface AirportOverview { export interface User { vatsimId: string; fullName: string; + radarScopeKey: string; administrator: boolean; airportConfigurationAccess: string[]; };