CSR-803: do not think async/await is needed here

This commit is contained in:
Adam Caouette 2022-09-13 17:38:24 -04:00
parent cffbe64b33
commit e98543dc5c

View file

@ -35,9 +35,9 @@ export default {
modelValue: Array,
glassIndex: Number,
},
async created() {
created() {
// validate form upon create to prevent out of sync / persistent valid states
await useValidateForm(); // do a test validation check, without triggering full validation
useValidateForm(); // do a test validation check, without triggering full validation
this.questionData.map((q, i) => {
const question = {