From 5f31207b05da844a8286e48b2bd36c6eb7643656 Mon Sep 17 00:00:00 2001
From: ArneBo <arne@ecobasa.org>
Date: Mon, 7 Apr 2025 00:39:16 +0200
Subject: [PATCH] fix(front): raw text string error

---
 front/src/components/auth/SignupForm.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/front/src/components/auth/SignupForm.vue b/front/src/components/auth/SignupForm.vue
index a193dcf32..fec903e87 100644
--- a/front/src/components/auth/SignupForm.vue
+++ b/front/src/components/auth/SignupForm.vue
@@ -202,7 +202,7 @@ fetchInstanceSettings()
       :key="idx"
       :class="[{required: field.required}, 'field']"
     >
-    // TODO: as string is probably leading to issues with editform.
+      <!-- TODO: as string is probably leading to issues with editform. -->
       <Textarea
         v-if="field.input_type === 'long_text'"
         :id="`custom-field-${idx}`"