Skip to content

Commit

Permalink
Fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisassad committed Nov 14, 2024
1 parent 9bbd868 commit 96e654b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,8 @@ export async function handleSocialLoginCallback({
try {
// Sign a session
if (isCosmos && desiredChain) {
const signer = { signMessage: magic.cosmos.sign };
// eslint-disable-next-line
const signer = { signMessage: (magic as unknown as any).cosmos.sign };
const prefix = app.chain?.meta?.bech32_prefix || 'cosmos';
const canvasChainId = chainBaseToCanvasChainId(
ChainBase.CosmosSDK,
Expand Down

0 comments on commit 96e654b

Please sign in to comment.