Skip to content

Commit 030d0d2

Browse files
committed
fix: reload values on submit
1 parent e86be21 commit 030d0d2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/pages/steps/homeowner-info.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ const HomeownerInfo = () => {
9494
appeal.user?.heardabout || null
9595
)
9696

97-
const onFinish = async (values) => {
97+
const onFinish = async () => {
98+
// Force it to re-check fields, hopefully addressing iOS autofill
99+
const values = await form.validateFields()
98100
const info = {
99101
...values,
100102
pin: appeal.pin,

0 commit comments

Comments
 (0)