diff --git a/src/features/wallet/api/walletApi.ts b/src/features/wallet/api/walletApi.ts index 293a937..8f7e874 100644 --- a/src/features/wallet/api/walletApi.ts +++ b/src/features/wallet/api/walletApi.ts @@ -198,6 +198,6 @@ export async function createWallet(): Promise { } export async function revealMnemonic(): Promise { - const res = await walletPost<{ success: boolean; data: { mnemonic: string } }>('/api/wallets/mnemonic/reveal', {}) + const res = await walletPost<{ success: boolean; data: { mnemonic: string } }>('/api/wallets/mnemonic/reveal', { confirm: 'I_UNDERSTAND_SEED_IS_SECRET' }) return res.data.mnemonic }