File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ VITE_GOOGLE_CLIENT_SECRET=your_client_secret
100100| ** No due times** | Google Tasks API only supports dates, not times |
101101| ** No offline mode** | Planned for future release |
102102
103- > ** Note** : Notifications are triggered at 9 AM on the due date due to API limitations .
103+ > ** Note** : Notifications are triggered at your configured time on the due date (default: 9 AM). Change it in Settings .
104104
105105## 🗺️ Roadmap
106106
@@ -111,7 +111,8 @@ VITE_GOOGLE_CLIENT_SECRET=your_client_secret
111111- [x] Desktop notifications
112112- [ ] Global keyboard shortcuts
113113- [ ] Offline support with sync
114- - [ ] Dark mode
114+ - [x] Dark mode
115+ - [ ] Theme toggle (light/dark)
115116- [ ] Recurring tasks
116117
117118## 👨💻 Author
Original file line number Diff line number Diff line change 11import { useEffect } from "react" ;
22import {
33 Box ,
4- Button ,
54 Typography ,
65 Snackbar ,
76 Alert ,
Original file line number Diff line number Diff line change 77
88import { useSortable } from "@dnd-kit/sortable" ;
99import { CSS } from "@dnd-kit/utilities" ;
10- import { Box , IconButton } from "@mui/material" ;
10+ import { Box } from "@mui/material" ;
1111import { DragIndicator } from "@mui/icons-material" ;
1212import { AppTask } from "../../types/app" ;
1313import TaskListItem from "./TaskListItem" ;
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ export default function TaskListsContainer() {
203203 } ,
204204 } }
205205 >
206- { visibleLists . map ( ( list , index ) => (
206+ { visibleLists . map ( ( list ) => (
207207 < SortableTaskCard
208208 key = { list . id }
209209 taskList = { list }
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import {
1414 TaskRequestBody ,
1515 TaskListRequestBody ,
1616} from "../types/google-tasks" ;
17- import { AppTask , AppTaskList } from "../types/app" ;
1817
1918// =============================================================================
2019// Task List Repository Interface
You can’t perform that action at this time.
0 commit comments