diff --git a/assets/js/hooks/Mapper/components/map/MapProvider.tsx b/assets/js/hooks/Mapper/components/map/MapProvider.tsx index e9ce7383..8d153bfc 100644 --- a/assets/js/hooks/Mapper/components/map/MapProvider.tsx +++ b/assets/js/hooks/Mapper/components/map/MapProvider.tsx @@ -37,7 +37,7 @@ const INITIAL_DATA: MapData = { userPermissions: {}, systemSignatures: {} as Record, options: {} as Record, - is_subscription_active: false, + isSubscriptionActive: false, }; export interface MapContextProps { diff --git a/assets/js/hooks/Mapper/types/mapHandlers.ts b/assets/js/hooks/Mapper/types/mapHandlers.ts index c4bcfbfb..e6a5f5ef 100644 --- a/assets/js/hooks/Mapper/types/mapHandlers.ts +++ b/assets/js/hooks/Mapper/types/mapHandlers.ts @@ -66,6 +66,7 @@ export type CommandInit = { routes: RoutesList; options: Record; reset?: boolean; + is_subscription_active?: boolean; }; export type CommandAddSystems = SolarSystemRawType[]; export type CommandUpdateSystems = SolarSystemRawType[];