Add plan mode to show character comments in the table

This commit is contained in:
Calli
2023-10-02 12:29:32 +03:00
parent 1d75dfb286
commit 77af55ce2f
8 changed files with 81 additions and 20 deletions

View File

@@ -22,6 +22,8 @@ export const SessionContext = createContext<{
EVE_SSO_CLIENT_ID: string;
compactMode: boolean;
toggleCompactMode: () => void;
planMode: boolean;
togglePlanMode: () => void;
piPrices: EvePraisalResult | undefined;
}>({
sessionReady: false,
@@ -31,5 +33,7 @@ export const SessionContext = createContext<{
EVE_SSO_CLIENT_ID: "",
compactMode: false,
toggleCompactMode: () => {},
planMode: false,
togglePlanMode: () => {},
piPrices: undefined,
});