diff --git a/components/dashboard/NavBar.tsx b/components/dashboard/NavBar.tsx
index 27b106f..b940fd6 100644
--- a/components/dashboard/NavBar.tsx
+++ b/components/dashboard/NavBar.tsx
@@ -116,8 +116,6 @@ const RankingIcon = () => {
 const ActiveLink = (props: { href: string; children: React.ReactNode }) => {
   const router = useRouter();
   let styling = "text-white";
-  console.log(router.pathname);
-  console.log(props.href);
   if (router.pathname === props.href) {
     styling = "text-[#a855f7]";
   }
diff --git a/pages/index.tsx b/pages/index.tsx
index b0866bc..0ad909c 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -37,8 +37,6 @@ const Home: NextPageWithLayout = () => {
         setEmotes(emoteUrls);
         setCurrentEmote(Math.floor(Math.random() * emoteUrls.length));
       });
-    console.log(currentEmote);
-
     // eslint-disable-next-line react-hooks/exhaustive-deps
   }, []);