Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 6004916

Browse files
authored
fix: reviewBody (#62)
1 parent dc6c3e9 commit 6004916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/checker/hooks/useGetApplicationsFinalEvaluationPage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const useGetApplicationsFinalEvaluationPage = () => {
2626
applicationsToUpdate: [],
2727
currentApplications: Object.values(poolData.applications).map((app) => ({
2828
index: Number(app.id),
29-
status: app.status === "APPROVED" ? ApplicationStatus.APPROVED : ApplicationStatus.REJECTED,
29+
status: app.status as ApplicationStatus,
3030
})),
3131
strategy: poolData.applications[0]?.round.strategyName === PoolType.QuadraticFunding ? 0 : 1,
3232
};

0 commit comments

Comments
 (0)