diff --git a/src/pages/api/auth/[...auth0].ts b/src/pages/api/auth/[...auth0].ts index f8dd15de6..193ade0d2 100644 --- a/src/pages/api/auth/[...auth0].ts +++ b/src/pages/api/auth/[...auth0].ts @@ -4,7 +4,6 @@ import { NextApiRequest, NextApiResponse } from 'next'; const redirectUri = `${process.env.AUTH0_BASE_URL}/api/auth/callback?`; const afterCallback = (req: NextApiRequest, res: NextApiResponse, session: any, state: any) => { - console.log(session); delete session.refreshToken; delete session.accessTokenScope; delete session.accessToken; diff --git a/src/pages/changelog/[product]/rss.xml.tsx b/src/pages/changelog/[product]/rss.xml.tsx index ae855573d..bab5c46b3 100644 --- a/src/pages/changelog/[product]/rss.xml.tsx +++ b/src/pages/changelog/[product]/rss.xml.tsx @@ -22,7 +22,6 @@ export async function getServerSideProps(context: GetServerSidePropsContext) { const currentProduct: Product | undefined = products.find((p) => slugify(p.name) == product); if (currentProduct != null) { - console.log('search', search); // Fetch data const changelogEntryList = search != null ? await changelog.getEntriesByTitleProductChangeType({ entryTitle: search.toString(), productId: currentProduct?.id, pageSize: 10 }) : await changelog.getEntries({ pageSize: 10, productId: currentProduct?.id });