Skip to content

Commit 3ba7372

Browse files
committedJun 15, 2022
fix(travel): verification focus fail
1 parent 3ec794f commit 3ba7372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/views/Travel/AutoFocus/Verification.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const { shouldAutoFocusVerification, lastStepResponse } = storeToRefs(travelStor
1010
1111
watch(lastStepResponse, (val) => {
1212
if (!shouldAutoFocusVerification.value) return
13-
if (!val?.text?.includes("verification")) return
13+
if (!val?.text?.includes("verif")) return
1414
1515
/** let dom hydrate */
1616
setTimeout(() => {

0 commit comments

Comments
 (0)
Please sign in to comment.