File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed
Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1- import { StatsigFlags } from '@/constants/statsig' ;
1+ // import { StatsigFlags } from '@/constants/statsig';
22
3- import { testFlags } from '@/lib/testFlags' ;
3+ // import { testFlags } from '@/lib/testFlags';
44
5- import { useStatsigGateValue } from './useStatsig' ;
5+ // import { useStatsigGateValue } from './useStatsig';
66
77export const useEnableTurnkey = ( ) => {
8- const forcedTurnkey = testFlags . enableTurnkey ;
9- const turnkeyFF = useStatsigGateValue ( StatsigFlags . ffTurnkeyWeb ) ;
8+ // const forcedTurnkey = testFlags.enableTurnkey;
9+ // const turnkeyFF = useStatsigGateValue(StatsigFlags.ffTurnkeyWeb);
1010
11- return forcedTurnkey || turnkeyFF ;
11+ return false ; // forcedTurnkey || turnkeyFF;
1212} ;
Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ export const OnboardingDialog = ({
259259 />
260260 ) ;
261261} ;
262- const $Content = tw . div `flexColumn gap-1` ;
262+ const $Content = tw . div `flexColumn mt-2 gap-1` ;
263263
264264const $Dialog = styled ( Dialog ) < { width ?: string } > `
265265 @media ${ breakpoints . notMobile } {
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import { WalletIcon } from '@/components/WalletIcon';
2626export const ChooseWallet = ( {
2727 onChooseWallet,
2828 onSignInWithSocials,
29- // eslint-disable-next-line @typescript-eslint/no-unused-vars
3029 onSignInWithPasskey,
3130} : {
3231 onChooseWallet : ( wallet : WalletInfo ) => void ;
@@ -49,7 +48,7 @@ export const ChooseWallet = ({
4948 < HorizontalSeparatorFiller />
5049 </ div >
5150
52- { /* <$OtherOptionButton
51+ < $OtherOptionButton
5352 type = { ButtonType . Button }
5453 action = { ButtonAction . Base }
5554 size = { ButtonSize . BasePlus }
@@ -61,7 +60,7 @@ export const ChooseWallet = ({
6160 </ div >
6261
6362 < Icon iconName = { IconName . ChevronRight } />
64- </$OtherOptionButton> */ }
63+ </ $OtherOptionButton >
6564
6665 < $OtherOptionButton
6766 type = { ButtonType . Button }
You can’t perform that action at this time.
0 commit comments