diff --git a/src/routes/stocks/[tickerID]/+layout.server.ts b/src/routes/stocks/[tickerID]/+layout.server.ts index 0417ff04..89f80e71 100644 --- a/src/routes/stocks/[tickerID]/+layout.server.ts +++ b/src/routes/stocks/[tickerID]/+layout.server.ts @@ -53,7 +53,6 @@ const fetchCommunitySentiment = async (pb, ticker, cookies) => { const output = await pb.collection("sentiment").getFullList({ filter: `ticker="${ticker}" && created >= "${today}" && created < "${tomorrow}"`, }); - console.log(output); return { alreadyVoted: cookieVote || null, sentimentData: output?.at(0) || {},