Skip to content

Commit

Permalink
Fix Cookie House purchase modal flashing 'Error' in title (#2274)
Browse files Browse the repository at this point in the history
  • Loading branch information
NevilleS authored Jan 19, 2023
1 parent c0866f3 commit 67ac482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ The types of changes are:
* Improve readability for exceptions raised from custom request overrides [#2157](https://github.com/ethyca/fides/pull/2157)
* Importing custom request overrides on server startup [#2186](https://github.com/ethyca/fides/pull/2186)
* Remove warning when env vars default to blank strings in docker-compose [#2188](https://github.com/ethyca/fides/pull/2188)
* Fix Cookie House purchase modal flashing 'Error' in title [#2274](https://github.com/ethyca/fides/pull/2274)
* Stop dependency from upgrading `packaging` to version with known issue [#2273](https://github.com/ethyca/fides/pull/2273)
* Privacy center config no longer requires `identity_inputs` and will use `email` as a default [#2263](https://github.com/ethyca/fides/pull/2263)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Modal = ({
// eslint-disable-next-line @typescript-eslint/no-misused-promises
onSubmit={handleSubmit(onSubmit)}
>
<h2>{product?.name ?? 'Error'}</h2>
<h2>Submit Your Order</h2>
<p>All fields required</p>
<div>
<input type="text" placeholder='Name*' {...register('name', { required: true })} />
Expand Down

0 comments on commit 67ac482

Please sign in to comment.