diff --git a/src/wallet/types.ts b/src/wallet/types.ts index 30d0f6b0e8..7782411331 100644 --- a/src/wallet/types.ts +++ b/src/wallet/types.ts @@ -102,10 +102,10 @@ export type WalletDropdownDisconnectReact = { export type WalletDropdownFundLinkReact = { className?: string; // Optional className override for the element icon?: ReactNode; // Optional icon override - rel?: string; // Specifies the relationship between the current document and the linked document openIn?: 'popup' | 'tab'; // Whether to open the funding flow in a tab or a popup window popupFeatures?: string; // Optional features override for the popup window if `openIn` is set to `popup` popupSize?: 'sm' | 'md' | 'lg'; // Size of the popup window if `openIn` is set to `popup` + rel?: string; // Specifies the relationship between the current document and the linked document target?: string; // Where to open the target if `openIn` is set to tab text?: string; // Optional text override };