diff --git a/apps/web/src/app/app.tsx b/apps/web/src/app/app.tsx
index 919cd2c600020ffe54da87b11841eca8eeb505bf..70e28b387d6d59eea0821d1ef2883adb6cd8d236 100644
--- a/apps/web/src/app/app.tsx
+++ b/apps/web/src/app/app.tsx
@@ -70,21 +70,6 @@ export function App(props: App) {
       Broker.instance().subscribe((data: LinkPredictionInstance[]) => dispatch(setMLResult({ type: mlType, result: data })), mlType);
     });
 
-    const domain = import.meta.env.BACKEND_URL;
-    const useruri = import.meta.env.BACKEND_USER;
-    fetch(`${domain}${useruri}/headers`, {
-      method: 'GET',
-      redirect: 'follow',
-    });
-    fetch(`${domain}${useruri}/headers`, {
-      method: 'GET',
-      credentials: 'include',
-      redirect: 'follow',
-      headers: {
-        Authorization: `Bearer ${auth.accessToken}`,
-      },
-    });
-
     return () => {
       Broker.instance().unSubscribeAll('schema_result');
       Broker.instance().unSubscribeAll('query_result');
@@ -96,8 +81,8 @@ export function App(props: App) {
 
   useEffect(() => {
     // New active database
-    if (auth.accessToken && session.currentDatabase) {
-      ws.current.useToken(auth.accessToken).connect(() => {
+    if (auth.jwt && session.currentDatabase) {
+      ws.current.useToken(auth.jwt).connect(() => {
         api_schema.RequestSchema(session.currentDatabase);
       });
     }
diff --git a/apps/web/src/components/navbar/navbar.tsx b/apps/web/src/components/navbar/navbar.tsx
index 74d3efd9832ea1ed74dfc894479a26039e6c9924..0042a5619bdb6e0cb1e8ae6db3452e6c6de94a7c 100644
--- a/apps/web/src/components/navbar/navbar.tsx
+++ b/apps/web/src/components/navbar/navbar.tsx
@@ -81,7 +81,7 @@ export const Navbar = (props: NavbarComponentProps) => {
         </a>
         <SearchBar />
         <div className="dropdown">
-          <label tabIndex={0} className="s-1">
+          <label tabIndex={0} className="btn s-1">
             Vis
           </label>
           <ul tabIndex={0} className="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52">