fix: 🩹 convert numeric input to string

This commit is contained in:
ThatOneCalculator 2023-06-15 22:16:21 -07:00
parent 1ea1cdef95
commit 6247461736

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