Skip to content

Commit acd4aa2

Browse files
authored
Fix typo in error message: 'aftr' -> 'after' (#122)
Co-authored-by: Vedant Damedhar <damedharvedant1.com>
1 parent 7885d15 commit acd4aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/utils/callChatbotApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const callChatbotApi = async <T>(
3333
} catch (error: unknown) {
3434
if (error instanceof DOMException && error.name == "AbortError") {
3535
console.error(
36-
`API request to ${endpoint} timed out aftr ${timeoutMs}ms.`,
36+
`API request to ${endpoint} timed out after ${timeoutMs}ms.`,
3737
);
3838
} else {
3939
console.error(`API error calling ${endpoint}:`, error);

0 commit comments

Comments
 (0)