Skip to content

Commit

Permalink
Remove useless eslint ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Burtonation committed Jan 25, 2024
1 parent bb21087 commit cc7a568
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/nextjs/components/ForgeCollection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,7 @@ const ForgeCollection: FC<Props> = ({ address }) => {
args: [BigInt(0)],
});

const forgeItem = useCallback(
(id: number) => async () => forge.writeAsync({ args: [BigInt(id)] }),
// eslint-disable-next-line react-hooks/exhaustive-deps
[forge],
);
const forgeItem = useCallback((id: number) => async () => forge.writeAsync({ args: [BigInt(id)] }), [forge]);

return metadatas === undefined || balances.isLoading ? (
"Loading collection..."
Expand Down

0 comments on commit cc7a568

Please sign in to comment.