- added nped category options for alert popups

- minor fix on modal for 'DISABLED' MCC
This commit is contained in:
2025-11-14 15:01:01 +00:00
parent 0a1ac97c57
commit dd1cd342c1
9 changed files with 184 additions and 45 deletions

View File

@@ -423,6 +423,7 @@ export type NPEDSTATE = {
sessionPaused: boolean;
savedSightings: DedupedSightings;
npedUser: NPEDUser;
iscatEnabled: CategoryPopups;
};
export type NPEDACTION = {
@@ -430,3 +431,10 @@ export type NPEDACTION = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
payload: any;
};
export type CategoryPopups = {
catA: boolean;
catB: boolean;
catC: boolean;
catD: boolean;
};