Skip to content

Commit 62d4fd5

Browse files
authored
fix(web): Fix TS strict mode error in App.tsx (#423)
1 parent 79cab92 commit 62d4fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/src/components/DevFatalErrorPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface EnhancedGqlError extends GraphQLError {
3838
// Allow APIs client to attach response/request
3939
type ErrorWithRequestMeta = Error & {
4040
mostRecentRequest?: RequestDetails
41-
graphQLErrors: EnhancedGqlError[]
41+
graphQLErrors?: EnhancedGqlError[]
4242
mostRecentResponse?: any
4343
}
4444

0 commit comments

Comments
 (0)