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 7885d15 commit acd4aa2Copy full SHA for acd4aa2
frontend/src/utils/callChatbotApi.ts
@@ -33,7 +33,7 @@ export const callChatbotApi = async <T>(
33
} catch (error: unknown) {
34
if (error instanceof DOMException && error.name == "AbortError") {
35
console.error(
36
- `API request to ${endpoint} timed out aftr ${timeoutMs}ms.`,
+ `API request to ${endpoint} timed out after ${timeoutMs}ms.`,
37
);
38
} else {
39
console.error(`API error calling ${endpoint}:`, error);
0 commit comments