From ef9e47fb1e3d79572b1b9584a827bebbb9a27cf6 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Sun, 29 Jun 2025 21:38:41 +1200 Subject: [PATCH] [Dashboard] Add client ID header to embedded wallets fetch request --- apps/dashboard/src/@/hooks/useEmbeddedWallets.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dashboard/src/@/hooks/useEmbeddedWallets.ts b/apps/dashboard/src/@/hooks/useEmbeddedWallets.ts index 1cde81c06b0..b066bb2ec2e 100644 --- a/apps/dashboard/src/@/hooks/useEmbeddedWallets.ts +++ b/apps/dashboard/src/@/hooks/useEmbeddedWallets.ts @@ -22,6 +22,7 @@ const fetchAccountList = ({ headers: { Authorization: `Bearer ${jwt}`, "Content-Type": "application/json", + "x-client-id": clientId, }, method: "GET", });