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 83af212 commit a5e998a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/context/donate.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ export const DonateProvider: FC<IProviderProps> = ({ children, project }) => {
let isAllChecked = true;
const modals: DonateModalPriorityValues[] = Object.values(
DonateModalPriorityValues,
).filter(modal => typeof modal !== 'string');
).filter(
modal => typeof modal !== 'string',
) as DonateModalPriorityValues[];
for (const modalStatus of modals) {
if (!isModalStatusChecked.current.get(modalStatus)) {
highestModalStatusUnchecked = modalStatus;
Expand Down

0 comments on commit a5e998a

Please sign in to comment.