fix(Map): Added ability to see focused element

This commit is contained in:
DanSylvest
2025-10-09 15:52:48 +03:00
parent c6c065dbb9
commit 8498846d9c
6 changed files with 49 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ export type MapData = MapUnionTypes & {
isThickConnections: boolean;
linkedSigEveId: string;
localShowShipName: boolean;
systemHighlighted: string | undefined;
};
interface MapProviderProps {
@@ -44,6 +45,7 @@ const INITIAL_DATA: MapData = {
userHubs: [],
pings: [],
localShowShipName: false,
systemHighlighted: undefined,
};
export interface MapContextProps {