Skip to content

Commit

Permalink
run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
HrithikSampson committed Sep 21, 2024
1 parent e477202 commit 83af212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/context/donate.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ export const DonateProvider: FC<IProviderProps> = ({ children, project }) => {
let highestModalStatusUnchecked =
DonateModalPriorityValues.None;
let isAllChecked = true;
const modals: DonateModalPriorityValues[] = Object.values(DonateModalPriorityValues).filter(
modal => typeof modal !== 'string',
);
const modals: DonateModalPriorityValues[] = Object.values(
DonateModalPriorityValues,
).filter(modal => typeof modal !== 'string');
for (const modalStatus of modals) {
if (!isModalStatusChecked.current.get(modalStatus)) {
highestModalStatusUnchecked = modalStatus;
Expand Down

0 comments on commit 83af212

Please sign in to comment.