Skip to content

Commit

Permalink
fix: deepsource - replace any with string
Browse files Browse the repository at this point in the history
  • Loading branch information
sherzod-bakhodirov committed Dec 25, 2024
1 parent bd40c0d commit d88ef10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@magic-ext/farcaster/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class FarcasterExtension extends Extension.Internal<'farcaster'> {
});

handle.on(FarcasterLoginEventEmit.Cancel, () => {
this.createIntermediaryEvent(FarcasterLoginEventEmit.Cancel, payload.id as any)();
this.createIntermediaryEvent(FarcasterLoginEventEmit.Cancel, payload.id as string)();
});

return handle;
Expand Down

0 comments on commit d88ef10

Please sign in to comment.