Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dexamundsen committed Nov 27, 2024
1 parent 3b4a2ae commit 0bd7344
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions ui/src/cohortContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ export function useNewCohortContext(showSnackbar: (message: string) => void) {

mutate(
(key: { type: string; studyId: string; list: boolean }) =>
key.type === "cohort" &&
key.studyId === studyId &&
key.list,
key.type === "cohort" && key.studyId === studyId && key.list,
undefined,
{ revalidate: true }
);
Expand Down
4 changes: 1 addition & 3 deletions ui/src/featureSet/featureSetContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ export function useNewFeatureSetContext(

mutate(
(key: { type: string; studyId: string; list: boolean }) =>
key.type === "featureSet" &&
key.studyId === studyId &&
key.list,
key.type === "featureSet" && key.studyId === studyId && key.list,
undefined,
{ revalidate: true }
);
Expand Down

0 comments on commit 0bd7344

Please sign in to comment.