diff --git a/src/features/wallet/api/walletApi.ts b/src/features/wallet/api/walletApi.ts index c008311..293a937 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 } }>('/wallets/mnemonic/reveal', {}) + const res = await walletPost<{ success: boolean; data: { mnemonic: string } }>('/api/wallets/mnemonic/reveal', {}) return res.data.mnemonic }