Update FormDoc.vue

pull/6632/head
tugcekucukoglu 2024-10-21 17:20:19 +03:00
parent ff3f03aad6
commit b0f0e1cbb8
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export default {
filteredCountries: null,
resolver: null,
schema: z.object({
city: z.string().refine((val) => val.name !== '', {
country: z.string().refine((val) => val.name !== '', {
message: 'Please select a country.'
})
}),