Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Nov 9, 2023
1 parent 8e696e9 commit a5307dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/seam/connect/error-interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const isApiErrorResponse = (
typeof data.error === 'object' &&
data.error != null &&
'type' in data.error &&
typeof data.error === 'string'
typeof data.error.type === 'string'
)
}

Expand Down

0 comments on commit a5307dc

Please sign in to comment.