diff --git a/src/embed/status.ts b/src/embed/status.ts
index e00fd6c..14b97e3 100644
--- a/src/embed/status.ts
+++ b/src/embed/status.ts
@@ -291,13 +291,16 @@ export const handleStatus = async (
         siteName = instructions.siteName;
       }
     } else if (media?.mosaic) {
-      if (experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) && flags.nativeMultiImage) {
+      if (
+        experimentCheck(Experiment.DISCORD_NATIVE_MULTI_IMAGE, isDiscord) &&
+        flags.nativeMultiImage
+      ) {
         const photos = status.media?.photos || [];
 
         photos.forEach(photo => {
           /* Override the card type */
           status.embed_card = 'summary_large_image';
-          console.log('set embed_card to summary_large_image')
+          console.log('set embed_card to summary_large_image');
 
           const instructions = renderPhoto(
             {
diff --git a/src/helpers/media.ts b/src/helpers/media.ts
index a0420a2..8dd78c7 100644
--- a/src/helpers/media.ts
+++ b/src/helpers/media.ts
@@ -1,4 +1,4 @@
-import { Context } from "hono";
+import { Context } from 'hono';
 
 /* Help populate API response for media */
 export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo | null => {
@@ -12,23 +12,27 @@ export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo
     };
   } else if (media.type === 'video' || media.type === 'animated_gif') {
     /* Find the variant with the highest bitrate */
-    const bestVariant = media.video_info?.variants?.filter?.((format) => {
-      if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
-        /* Telegram doesn't support videos over 20 MB, so we need to filter them out */
-        const bitrate = format.bitrate || 0;
-        const length = (media.video_info?.duration_millis || 0) / 1000;
-        /* Calculate file size in bytes */
-        const fileSizeBytes: number = (bitrate * length) / 8;
-        /* Convert file size to megabytes (MB) */
-        const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
+    const bestVariant = media.video_info?.variants
+      ?.filter?.(format => {
+        if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
+          /* Telegram doesn't support videos over 20 MB, so we need to filter them out */
+          const bitrate = format.bitrate || 0;
+          const length = (media.video_info?.duration_millis || 0) / 1000;
+          /* Calculate file size in bytes */
+          const fileSizeBytes: number = (bitrate * length) / 8;
+          /* Convert file size to megabytes (MB) */
+          const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
 
-        console.log(`Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate/1000} kbps`);
-        return fileSizeMB < 30; /* Currently this calculation is off, so we'll just do it if it's way over */
-      }
-      return !format.url.includes('hevc');
-    }).reduce?.((a, b) =>
-      (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
-    );
+          console.log(
+            `Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate / 1000} kbps`
+          );
+          return (
+            fileSizeMB < 30
+          ); /* Currently this calculation is off, so we'll just do it if it's way over */
+        }
+        return !format.url.includes('hevc');
+      })
+      .reduce?.((a, b) => ((a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b));
     return {
       url: bestVariant?.url || '',
       thumbnail_url: media.media_url_https,
diff --git a/src/providers/twitter/processor.ts b/src/providers/twitter/processor.ts
index 6fa3f2d..839a143 100644
--- a/src/providers/twitter/processor.ts
+++ b/src/providers/twitter/processor.ts
@@ -254,8 +254,6 @@ export const buildAPITwitterStatus = async (
           }
         });
       }
-
-
     }
   } else {
     /* Determine if the status contains a YouTube link (either youtube.com or youtu.be) so we can include it */
diff --git a/src/realms/api/hit.ts b/src/realms/api/hit.ts
index 5519c20..4d8db8e 100644
--- a/src/realms/api/hit.ts
+++ b/src/realms/api/hit.ts
@@ -1,4 +1,4 @@
-import { Context } from "hono";
+import { Context } from 'hono';
 
 export const linkHitRequest = async (c: Context) => {
   // eslint-disable-next-line sonarjs/no-duplicate-string
@@ -12,4 +12,4 @@ export const linkHitRequest = async (c: Context) => {
     const url = new URL(c.req.query('url') as string);
     return c.redirect(url.href, 302);
   }
-}
\ No newline at end of file
+};
diff --git a/src/render/instantview.ts b/src/render/instantview.ts
index 09e6969..8c8a45b 100644
--- a/src/render/instantview.ts
+++ b/src/render/instantview.ts
@@ -119,12 +119,7 @@ const truncateSocialCount = (count: number): string => {
 
 const wrapForeignLinks = (url: string) => {
   let unwrap = false;
-  const whitelistedDomains = [
-    'twitter.com',
-    'x.com',
-    't.me',
-    'telegram.me'
-  ]
+  const whitelistedDomains = ['twitter.com', 'x.com', 't.me', 'telegram.me'];
   try {
     const urlObj = new URL(url);
 
@@ -135,8 +130,10 @@ const wrapForeignLinks = (url: string) => {
     unwrap = true;
   }
 
-  return unwrap ? `https://${Constants.API_HOST_LIST[0]}/2/hit?url=${encodeURIComponent(url)}` : url;
-}
+  return unwrap
+    ? `https://${Constants.API_HOST_LIST[0]}/2/hit?url=${encodeURIComponent(url)}`
+    : url;
+};
 
 const generateStatusFooter = (status: APIStatus, isQuote = false): string => {
   const { author } = status;