Skip to content

Commit d44a53d

Browse files
committed
Fix error message typo
1 parent 18dc4a1 commit d44a53d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/send/sent-response-error.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const SentResponseError = (props: {
7474
: errorType === 'host-unreachable'
7575
? 'was not reachable on your network connection'
7676
: errorType === 'host-not-found' || errorType === 'dns-error'
77-
? 'hostname could be not found'
77+
? 'hostname could not be found'
7878
: errorType === 'connection-refused'
7979
? 'refused the connection'
8080
: unreachableCheck(errorType)

src/components/view/http/http-error-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const HttpErrorHeader = (p: {
9292
: p.type === 'host-unreachable'
9393
? 'was not reachable on your network connection'
9494
: p.type === 'host-not-found' || p.type === 'dns-error'
95-
? 'hostname could be not found'
95+
? 'hostname could not be found'
9696
: p.type === 'connection-refused'
9797
? 'refused the connection'
9898
: unreachableCheck(p.type)

0 commit comments

Comments
 (0)