From 822a744cc567dc8f8994215f6d52886d62cc36ea Mon Sep 17 00:00:00 2001
From: dangered wolf <d@ngeredwolf.me>
Date: Fri, 10 Nov 2023 01:04:20 -0500
Subject: [PATCH] Move these now that prettier was run

---
 src/realms/twitter/routes/redirects.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/realms/twitter/routes/redirects.ts b/src/realms/twitter/routes/redirects.ts
index f44d6f2..cfff1f2 100644
--- a/src/realms/twitter/routes/redirects.ts
+++ b/src/realms/twitter/routes/redirects.ts
@@ -36,13 +36,13 @@ export const setRedirectRequest = async (c: Context) => {
 
   if (!url) {
     /* Remove redirect URL */
-    // eslint-disable-next-line sonarjs/no-duplicate-string
     c.header(
+      // eslint-disable-next-line sonarjs/no-duplicate-string
       'set-cookie',
       `base_redirect=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; HttpOnly`
     );
-    // eslint-disable-next-line sonarjs/no-duplicate-string
     c.header(
+      // eslint-disable-next-line sonarjs/no-duplicate-string
       'content-security-policy',
       `frame-ancestors ${Constants.STANDARD_DOMAIN_LIST.join(' ')};`
     );