fix: 🩹 convert numeric input to string

This commit is contained in:
ThatOneCalculator 2023-06-15 22:16:21 -07:00
parent f50f8830a8
commit 074e633306
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -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);