From 5a7e0e56f38a122c6d8e390f9726fb887b3e02ce Mon Sep 17 00:00:00 2001
From: Noa Santo <72336443+virus-rpi@users.noreply.github.com>
Date: Thu, 12 Dec 2024 16:06:55 +0100
Subject: [PATCH] fix: add missing semicolon
---
src/components/cookie-consent.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/cookie-consent.tsx b/src/components/cookie-consent.tsx
index b75024e4..f92524f5 100644
--- a/src/components/cookie-consent.tsx
+++ b/src/components/cookie-consent.tsx
@@ -95,5 +95,5 @@ export const CookieConsent = () => {
setupCookieConsent();
}, [i18n.language]);
- return
+ return ;
};