Refactor general review filter to only call the update function once (#14866)

This commit is contained in:
Josh Hawkins
2024-11-08 07:45:00 -06:00
committed by GitHub
parent 46ed520886
commit ae30ac6e3c
3 changed files with 117 additions and 117 deletions

View File

@@ -10,3 +10,9 @@ export type FilterList = {
};
export const LAST_24_HOURS_KEY = "last24Hours";
export type GeneralFilter = {
showAll?: boolean;
labels?: string[];
zones?: string[];
};