Skip to content

Commit

Permalink
chore: fixes magic type
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuascan committed Jan 8, 2025
1 parent 38c335f commit 9e1b078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ChainId } from '@kadena/types';
import { DEFAULT_CHAIN_ID } from '@/utils/constants';
import { KadenaUserMetadata } from '@magic-ext/kadena/dist/types/types';

export type Magic = MagicBase<OAuthExtension[] & KadenaExtension[]>;
export type Magic = MagicBase<{ oauth: OAuthExtension; kadena: KadenaExtension }>;

type MagicContextType = {
magic: Magic | null;
Expand Down

0 comments on commit 9e1b078

Please sign in to comment.