fix: 🩹 convert numeric input to string
This commit is contained in:
parent
1ea1cdef95
commit
6247461736
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ let hCaptchaResponse = $ref(null);
|
|||
let reCaptchaResponse = $ref(null);
|
||||
|
||||
const updateToken = (value: string) => {
|
||||
token = value;
|
||||
token = value.toString();
|
||||
};
|
||||
|
||||
const meta = $computed(() => instance);
|
||||
|
|
Loading…
Reference in a new issue