feat(invite): render Add to Wallet button in the dialog

This commit is contained in:
vineyardbovines
2026-06-25 18:01:42 -04:00
parent 3561d4de35
commit d3410fb281
@@ -23,6 +23,7 @@ import {Text} from '#/components/Typography'
import {useAnalytics} from '#/analytics'
import {IS_NATIVE} from '#/env'
import {ActionButtons} from './components/ActionButtons'
import {AddToWalletButton} from './components/AddToWalletButton'
import {ThemedQrCard} from './components/ThemedQrCard'
import {ThemePicker} from './components/ThemePicker'
import {useInviteThemeKey} from './hooks/useInviteThemeKey'
@@ -200,6 +201,12 @@ export function InviteFriendsDialogInner({
/>
</View>
{isHandleValid && handle ? (
<View style={[a.w_full, a.align_center, {marginTop: 24}]}>
<AddToWalletButton themeKey={themeKey} handle={handle} />
</View>
) : null}
<View
style={[
a.flex_row,