Skip to content

Commit

Permalink
cleaning 💢
Browse files Browse the repository at this point in the history
  • Loading branch information
dysbulic committed Aug 18, 2024
1 parent 7772639 commit 9c86ffd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 2 additions & 4 deletions packages/web/components/QuestChain/QuestHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,13 @@ export const ChainStats: React.FC<{
<Box
bg="cyan"
w={`${
(progress.total ? progress.completeCount / progress.total : 0) *
100
(progress.total ? progress.completeCount / progress.total : 0) * 100
}%`}
/>
<Box
bgColor="#EFFF8F"
w={`${
(progress.total ? progress.inReviewCount / progress.total : 0) *
100
(progress.total ? progress.inReviewCount / progress.total : 0) * 100
}%`}
/>
<Box h={2} />
Expand Down
2 changes: 0 additions & 2 deletions packages/web/components/QuestChain/UploadProof.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { useViemClients } from '#lib/hooks/useEthersProvider';
import { useInputText } from '#lib/hooks/useInputText';
import { errorHandler } from '#utils/errorHandler';
import { getHexChainId, NETWORK_INFO } from '#utils/networks';
import { a } from '@react-spring/web';
import { SimulateContractReturnType } from 'viem';

export type ToastInfo = {
close: boolean;
Expand Down

0 comments on commit 9c86ffd

Please sign in to comment.