Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tower1229 committed Feb 29, 2024
1 parent 7eed655 commit 82fae9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pages/game/_components/GameOver.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,8 @@ export const GameOver = ({
className="rounded-none text-success btn btn-xs btn-ghost"
disabled={mintLoading}
onClick={() => {
void mint().then((hash) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
void mint().then((hash: any) => {
console.log("mint", hash);
setMintHash(hash);
});
Expand Down
2 changes: 1 addition & 1 deletion src/pages/game/_utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "./helper";
export * from "./config";
export * from "./gameState";
export * from "./useEvmSbt";
export * from "./useEvmSBT";

0 comments on commit 82fae9e

Please sign in to comment.