Update storage keys

Signed-off-by: leonnicolas <leonloechner@gmx.de>
This commit is contained in:
leonnicolas 2025-01-13 21:46:45 +01:00
parent 36520fd8b2
commit fccd78d3cd
No known key found for this signature in database
GPG key ID: 088D0743E2B65C07
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@ export default function AlertsPage() {
);
const [debouncedSearch] = useDebouncedValue<string>(searchFilter.trim(), 250);
const [showEmptyGroups, setShowEmptyGroups] = useLocalStorage<boolean>({
key: "alerts-page-show-empty-groups",
key: "alertsPage.showEmptyGroups",
defaultValue: true,
});

View file

@ -166,7 +166,7 @@ const ScrapePoolList: FC<ScrapePoolListProp> = ({
const dispatch = useAppDispatch();
const [showEmptyPools, setShowEmptyPools] = useLocalStorage<boolean>({
key: "targets-page-show-empty-pools",
key: "targetsPage.showEmptyPools",
defaultValue: true,
});