diff --git a/client/components/open/forms/OpenCompleteForm.vue b/client/components/open/forms/OpenCompleteForm.vue index 5934f86..4d54b4f 100644 --- a/client/components/open/forms/OpenCompleteForm.vue +++ b/client/components/open/forms/OpenCompleteForm.vue @@ -62,10 +62,8 @@ mode="out-in" >
- Create your form for free with OpnForm + + Create your form for free with OpnForm +
@@ -206,7 +206,7 @@ defineRouteRules({ swr: 3600 }) -const { copy } = useClipboard() +const {copy} = useClipboard() const authStore = useAuthStore() const templatesStore = useTemplatesStore() @@ -266,16 +266,16 @@ useOpnSeoMeta({ if (!template || !template.value) return 'Form Template' return template.value.name }, - description () { + description() { if (!template || !template.value) return null // take the first 140 characters of the description return template.value.short_description?.substring(0, 140) + '... | Customize any template and create your own form in minutes.' }, - ogImage () { + ogImage() { if (!template || !template.value) return null return template.value.image_url }, - robots () { + robots() { if (!template || !template.value) return null return template.value.publicly_listed ? null : 'noindex' }