From f040a52e2464991f976036a450f5ba93cd3d22fa Mon Sep 17 00:00:00 2001 From: Alec Chen <93971719+0xAlec@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:12:28 -0700 Subject: [PATCH] alphabetical --- src/wallet/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 };