diff --git a/src/routes/stocks/[tickerID]/forecast/analyst/+page.svelte b/src/routes/stocks/[tickerID]/forecast/analyst/+page.svelte
index 6f516958..eca805df 100644
--- a/src/routes/stocks/[tickerID]/forecast/analyst/+page.svelte
+++ b/src/routes/stocks/[tickerID]/forecast/analyst/+page.svelte
@@ -8,6 +8,7 @@
import InfoModal from "$lib/components/InfoModal.svelte";
import { onMount } from "svelte";
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte";
+ import { goto } from "$app/navigation";
export let data;
@@ -258,27 +259,47 @@
class="bg-[#313131] w-full sm:w-fit relative flex flex-wrap items-center justify-center rounded-md p-1 mt-4"
>
{#each tabs as item, i}
-
+
+ {item.title}
+
+
+
+ {:else}
+ changeTab(i)}
+ class="group relative z-[1] rounded-full w-1/2 min-w-24 md:w-auto px-5 py-1 {activeIdx ===
+ i
+ ? 'z-0'
+ : ''} "
+ >
+ {#if activeIdx === i}
+
+ {/if}
+
+ {item.title}
+
+
+ {/if}
{/each}