fix: send org_id as string on login (dev user-service)
This commit is contained in:
parent
8f67e53529
commit
d4c55eeec3
@ -43,7 +43,8 @@ export function useAuth() {
|
||||
body: JSON.stringify({
|
||||
email,
|
||||
password,
|
||||
...(orgId ? { org_id: Number(orgId) } : {}),
|
||||
// dev's user-service unmarshals org_id as a string.
|
||||
...(orgId ? { org_id: orgId } : {}),
|
||||
}),
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user