We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe5381b commit e8c08c6Copy full SHA for e8c08c6
src/libs/ajax/User.ts
@@ -197,7 +197,7 @@ export const User = (signal?: AbortSignal) => {
197
},
198
199
getSamUserCombinedState: async (): Promise<SamUserCombinedStateResponse> => {
200
- const res = await fetchSam('/api/user/v2/self/combinedState', _.mergeAll([authOpts(), { signal }]));
+ const res = await fetchSam('api/users/v2/self/combinedState', _.mergeAll([authOpts(), { signal }]));
201
const response = await res.json();
202
if (response.terraUserAttributes !== null) {
203
response.terraUserAttributes = response.terraUserAttributes.map((attributes) => {
0 commit comments