Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Jun 29, 2021
1 parent 285ef2e commit ed1cb4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/with-stripe-typescript/components/ElementsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ const ElementsForm = () => {
onChange={(e) => {
if (e.error) {
setPayment({ status: 'error' })
setErrorMessage(e.error.message ?? 'An unknown error occurred')
setErrorMessage(
e.error.message ?? 'An unknown error occurred'
)
}
}}
/>
Expand Down

0 comments on commit ed1cb4e

Please sign in to comment.