diff --git a/src/routes/stocks/[tickerID]/+layout.svelte b/src/routes/stocks/[tickerID]/+layout.svelte index 206f2e0a..280bdf8d 100644 --- a/src/routes/stocks/[tickerID]/+layout.svelte +++ b/src/routes/stocks/[tickerID]/+layout.svelte @@ -113,7 +113,7 @@ function handleTypeOfTrade(state:string) insider: "/insider", options: "/options", dividends: "/dividends", - fundamental: "/stats", + stats: "/stats", forecast: "/forecast", news: "/news", }; @@ -333,8 +333,9 @@ function handleTypeOfTrade(state:string) if ($page.url.pathname) { const parts = $page?.url?.pathname?.split("/"); const sectionMap = { - stats: "fundamental", + stats: "stats", options: "options", + metrics: "metrics", insider: "insider", dividends: "dividends", forecast: "forecast", @@ -763,7 +764,7 @@ function handleTypeOfTrade(state:string)