We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3073c5 commit c298898Copy full SHA for c298898
src/lib/httpClient.ts
@@ -189,6 +189,9 @@ export default class httpClient {
189
}
190
return { authResult, orgId, userId };
191
} else {
192
+ if(response && response.message) {
193
+ throw new Error(response.message);
194
+ }
195
throw new Error('Authentication failed, project token not received. Refer to the smartui.log file for more information');
196
197
0 commit comments