Skip to content

Commit

Permalink
chore: remove Intake Needed from Filters (#1093)
Browse files Browse the repository at this point in the history
  • Loading branch information
asharonbaltazar authored and rmuntaqim committed Feb 4, 2025
1 parent 5b6d547 commit cd1ac9a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,6 @@ export const CHECK_STATESTATUS: DrawerFilterableGroup = {
value: [],
};

export const BOOL_INITIALINTAKENEEDED: DrawerFilterableGroup = {
label: "Intake Needed",
field: "initialIntakeNeeded",
component: "boolean",
prefix: "must",
type: "match",
value: null,
};

export const BOOL_RAIWITHDRAWENABLED: DrawerFilterableGroup = {
label: "RAI Withdraw Enabled",
field: "raiWithdrawEnabled",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ export const useFilterState = () => {
if (isCms) return { [C.CHECK_CMSSTATUS.field]: C.CHECK_CMSSTATUS };
return { [C.CHECK_STATESTATUS.field]: C.CHECK_STATESTATUS };
})(),
...(!!user?.isCms && {
[C.BOOL_INITIALINTAKENEEDED.field]: C.BOOL_INITIALINTAKENEEDED,
}),
[C.BOOL_RAIWITHDRAWENABLED.field]: C.BOOL_RAIWITHDRAWENABLED,
[C.DATE_INITIALSUBMISSION.field]: C.DATE_INITIALSUBMISSION,
[C.DATE_FINALDISPOSITION.field]: C.DATE_FINALDISPOSITION,
Expand All @@ -48,9 +45,6 @@ export const useFilterState = () => {
if (isCms) return { [C.CHECK_CMSSTATUS.field]: C.CHECK_CMSSTATUS };
return { [C.CHECK_STATESTATUS.field]: C.CHECK_STATESTATUS };
})(),
...(!!user?.isCms && {
[C.BOOL_INITIALINTAKENEEDED.field]: C.BOOL_INITIALINTAKENEEDED,
}),
[C.BOOL_RAIWITHDRAWENABLED.field]: C.BOOL_RAIWITHDRAWENABLED,
[C.DATE_INITIALSUBMISSION.field]: C.DATE_INITIALSUBMISSION,
[C.DATE_FINALDISPOSITION.field]: C.DATE_FINALDISPOSITION,
Expand Down

0 comments on commit cd1ac9a

Please sign in to comment.