From b51f0f573a84cf305f3f2b88d2c85542bac7fa1d Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Sat, 2 Nov 2024 19:27:05 +0000 Subject: [PATCH] Avoid emojis --- src/survey/router.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/survey/router.gleam b/src/survey/router.gleam index bd19331..5aad08f 100644 --- a/src/survey/router.gleam +++ b/src/survey/router.gleam @@ -63,7 +63,7 @@ pub fn handle_form_submission(req: Request) -> Response { ]) wisp.ok() - |> wisp.set_cookie(req, cookie_name, "🥰", wisp.PlainText, 60 * 60 * 24 * 90) + |> wisp.set_cookie(req, cookie_name, ":)", wisp.PlainText, 60 * 60 * 24 * 90) |> wisp.html_body(string_builder.from_string(html_thanks)) }