storing changes, starting history list

This commit is contained in:
2025-09-15 10:27:31 +01:00
parent 7588326cbe
commit c414342515
12 changed files with 129 additions and 107 deletions

View File

@@ -9,7 +9,9 @@ type SightingFeedContextType = {
mostRecent: SightingWidgetType | null;
side: string;
selectedSighting: SightingType | null;
setSelectedSighting: (sighting: SightingType | null) => void;
setSelectedSighting: (
sighting: SightingType | SightingWidgetType | null
) => void;
setSightingModalOpen: (isSightingModalOpen: boolean) => void;
isSightingModalOpen: boolean;
};