Skip to content

Commit

Permalink
feat(date) remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindgrutle committed Sep 7, 2023
1 parent 8946f65 commit fea11de
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ function Row({ board }: { board: { id: string; settings?: TSettings } }) {
await router.push('/edit/' + board.id)
}

console.log('settings', board.settings)

return (
<div className={classes.tableRow}>
<Cell>{board.settings?.title ?? 'Tavla'}</Cell>
Expand Down
1 change: 0 additions & 1 deletion next-tavla/src/Shared/utils/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export async function setBoardSettings(boardId: string, settings: TSettings) {

export async function addBoardSettings(settings: TSettings) {
const firestore = safeGetFirestore()
console.log('settings', settings)
return await addDoc(collection(firestore, 'settings-v2'), {
...settings,
})
Expand Down

0 comments on commit fea11de

Please sign in to comment.