diff --git a/src/routes/stocks/[tickerID]/+layout.server.ts b/src/routes/stocks/[tickerID]/+layout.server.ts
index 399d4608..98e6c80a 100644
--- a/src/routes/stocks/[tickerID]/+layout.server.ts
+++ b/src/routes/stocks/[tickerID]/+layout.server.ts
@@ -56,7 +56,6 @@ export const load = async ({ params, locals }) => {
"/one-day-price",
"/next-earnings",
"/earnings-surprise",
- "/dividend-announcement",
"/stock-news",
];
@@ -77,7 +76,6 @@ export const load = async ({ params, locals }) => {
getOneDayPrice,
getNextEarnings,
getEarningsSurprise,
- getDividendAnnouncement,
getNews,
getUserWatchlist,
] = await Promise.all(promises);
@@ -94,7 +92,6 @@ export const load = async ({ params, locals }) => {
getOneDayPrice,
getNextEarnings,
getEarningsSurprise,
- getDividendAnnouncement,
getNews,
getUserWatchlist,
companyName: cleanString(getStockDeck?.companyName),
diff --git a/src/routes/stocks/[tickerID]/+page.svelte b/src/routes/stocks/[tickerID]/+page.svelte
index e627b223..a9547260 100644
--- a/src/routes/stocks/[tickerID]/+page.svelte
+++ b/src/routes/stocks/[tickerID]/+page.svelte
@@ -12,7 +12,6 @@
wsAskPrice,
currentPortfolioPrice,
stockTicker,
- displayCompanyName,
shouldUpdatePriceChart,
priceChartData,
} from "$lib/store";
@@ -23,7 +22,6 @@
import News from "$lib/components/News.svelte";
import NextEarnings from "$lib/components/NextEarnings.svelte";
import EarningsSurprise from "$lib/components/EarningsSurprise.svelte";
- import DividendAnnouncement from "$lib/components/DividendAnnouncement.svelte";
import Sidecard from "$lib/components/Sidecard.svelte";
import { convertTimestamp, abbreviateNumber } from "$lib/utils";
@@ -1391,16 +1389,6 @@