diff --git a/src/app/layout.jsx b/src/app/layout.jsx
index 0471ac699d031f1e92e1328e9fe540ae6bdc91df..c9e17f54d0dada373f158d48aa2d462cb1083649 100644
--- a/src/app/layout.jsx
+++ b/src/app/layout.jsx
@@ -8,9 +8,6 @@ export const Metadata = {
 export default function RootLayout({children}) {
     return (
         <html lang="en">
-        <Head>
-            <link rel="icon" href="/src/styles/favicon.ico" />
-        </Head>
         <body>
         <div id="root">{children}</div>
         </body>
diff --git a/src/components/SortingVisualizer.jsx b/src/components/SortingVisualizer.jsx
index 6220c820d4175fe72fa171252785ce64c51dd506..d21ec0cd9c5da6411f8c965975aba72f0637aa10 100644
--- a/src/components/SortingVisualizer.jsx
+++ b/src/components/SortingVisualizer.jsx
@@ -1,4 +1,4 @@
-"use client";
+'use client';
 
 import {useState, useEffect} from 'react';
 import '../styles/SortingVisualizer.css'