Skip to content

Commit 36abe83

Browse files
committed
fix
1 parent 5d49d32 commit 36abe83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function getErrorMessage(error: unknown): string {
1111
if (anxios.isAxiosError(error)) {
1212
const axiosError = error as AxiosError;
1313
if (axiosError.code === 'ECONNABORTED') {
14-
return 'Connection timeout plese check your internet connection or proxy settings.';
14+
return 'Connection timeout please check your internet connection or proxy settings.';
1515
} else if (axiosError.status === 407) {
1616
return 'Proxy authentication required. Please check your proxy settings.';
1717
} else if (axiosError.status === 401) {

0 commit comments

Comments
 (0)