Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
markvanaalst committed Dec 23, 2024
1 parent d31acf9 commit 76a08fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pages/api/auth/[...auth0].ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/pages/changelog/[product]/rss.xml.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down

0 comments on commit 76a08fe

Please sign in to comment.