mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
fix: removed viewType from browser Settings Atom, converted to using path to identify pages
This commit is contained in:
@@ -3,7 +3,7 @@ import HabitList from '@/components/HabitList'
|
||||
export default function HabitsPage() {
|
||||
return (
|
||||
<div className="flex flex-col">
|
||||
<HabitList />
|
||||
<HabitList isTasksView={false} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
10
app/tasks/page.tsx
Normal file
10
app/tasks/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import HabitList from '@/components/HabitList'
|
||||
|
||||
export default function TasksPage() {
|
||||
return (
|
||||
<div className="flex flex-col">
|
||||
<HabitList isTasksView={true} />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user