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 53796bc commit 62d6689Copy full SHA for 62d6689
src/frontend/apps/impress/src/core/config/api/useConfig.tsx
@@ -38,7 +38,10 @@ export const getConfig = async (): Promise<ConfigResponse> => {
38
const response = await fetchAPI(`config/`);
39
40
if (!response.ok) {
41
- throw new APIError('Failed to get the doc', await errorCauses(response));
+ throw new APIError(
42
+ 'Failed to get the configurations',
43
+ await errorCauses(response),
44
+ );
45
}
46
47
const config = response.json() as Promise<ConfigResponse>;
0 commit comments