Skip to content

Commit 936aa84

Browse files
fix team id
1 parent f26912d commit 936aa84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/dashboard/src/@/hooks/useEmbeddedWallets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const fetchAccountList = ({
3333
headers: {
3434
Authorization: `Bearer ${jwt}`,
3535
"Content-Type": "application/json",
36-
"x-team-id": teamId,
36+
"x-thirdweb-team-id": teamId,
3737
...(clientId && { "x-client-id": clientId }),
3838
},
3939
method: "GET",

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/wallets/users/components/searchUsers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export async function searchUsers(
3939
headers: {
4040
Authorization: `Bearer ${authToken}`,
4141
"Content-Type": "application/json",
42-
"x-team-id": teamId,
42+
"x-thirdweb-team-id": teamId,
4343
...(clientId && { "x-client-id": clientId }),
4444
},
4545
method: "GET",

0 commit comments

Comments
 (0)