Skip to content

Commit

Permalink
fix: add comment to ts expect error
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Jun 17, 2024
1 parent bbd218a commit bc3f81d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export default function Home() {
try {
const signature = await starknetAccount?.signMessage(
typedData,
// @ts-expect-error
// @ts-expect-error we should skip deploy
{ skipDeploy: true }
);
const virtualTxId = await starknetResetButtonFromEth(
Expand All @@ -320,7 +320,7 @@ export default function Home() {
try {
const signature = await starknetAccount?.signMessage(
typedData,
// @ts-expect-error
// @ts-expect-error we should skip deploy
{ skipDeploy: true }
);
const virtualTxId = await altStarknetNewAccount(
Expand Down

0 comments on commit bc3f81d

Please sign in to comment.