Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Sep 27, 2024
1 parent b06e208 commit bb12a25
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/app/_components/IndividualStory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ export const IndividualStory = ({
.map(({ pronouns, tag }) => t(`pronoun.${tag}`, { defaultValue: pronouns }))
.join(', ')

console.log(translatedPronouns)

const content = (
<Flex className={classes.story} align='center' justify='space-evenly'>
<Group className={classes.imageContainer}>
Expand Down
1 change: 0 additions & 1 deletion src/app/_components/Navigation/server-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { cookies } from 'next/headers'
import { redirect, RedirectType } from 'next/navigation'

export const changeLocale = async (locale: string, path: string) => {
console.log(locale, path)
cookies().set('NEXT_LOCALE', locale)
redirect(path, RedirectType.replace)
}
1 change: 0 additions & 1 deletion src/app/_components/StoryPreviewCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export const StoryPreviewCard = async ({
?.map(({ pronouns, tag }) => t(`pronoun.${tag}`, { defaultValue: pronouns, ns: 'common' }))
.join(', ') ?? null

console.log(pronouns, displayPronouns)
return (
<Card m='md' mx='auto' h='90%' className={classes.card}>
<CardSection>
Expand Down

0 comments on commit bb12a25

Please sign in to comment.