aboutsummaryrefslogtreecommitdiff
path: root/app/obrigado/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/obrigado/page.tsx')
-rw-r--r--app/obrigado/page.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/obrigado/page.tsx b/app/obrigado/page.tsx
index 173436b..334895e 100644
--- a/app/obrigado/page.tsx
+++ b/app/obrigado/page.tsx
@@ -36,12 +36,11 @@ export default function ObrigadoPage() {
try {
const supabase = getSupabaseClient();
- const optionRegistered = option === "NULO" ? "SIE" : option;
const { error } = await supabase.from("votes").insert([
{
rm,
name,
- option: optionRegistered,
+ option: option,
},
]);