Skip to content

Commit

Permalink
fix: 🐛 Removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanObrink authored and viktorlarsson committed Apr 28, 2021
1 parent fba0c61 commit 9671fa2
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/app/components/week.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,8 @@ export const Week = ({ child }: WeekProps) => {
Math.min(date.weekday(), 5)
)
const [year, week] = [moment().isoWeekYear(), moment().isoWeek()]
<<<<<<< HEAD
console.log('year week', year, week, date.toString())
const { data: lessons } = useTimetable(child, week, year)
=======
console.log('Language', LanguageService.getLanguageCode())
const { data: lessons } = useTimetable(
child,
week,
year,
LanguageService.getLanguageCode()
)
console.log(lessons)
>>>>>>> fix: 🐛 Renamed misnamed location
const { data: menu } = useMenu(child)

return (
Expand Down

0 comments on commit 9671fa2

Please sign in to comment.