Skip to content

Commit a9f9115

Browse files
committed
2 parents e5deead + cf16e57 commit a9f9115

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useEffect } from "react";
22
import {
33
Box,
4-
Button,
54
Typography,
65
Snackbar,
76
Alert,

src/components/tasks/SortableTaskItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import { useSortable } from "@dnd-kit/sortable";
99
import { CSS } from "@dnd-kit/utilities";
10-
import { Box, IconButton } from "@mui/material";
10+
import { Box } from "@mui/material";
1111
import { DragIndicator } from "@mui/icons-material";
1212
import { AppTask } from "../../types/app";
1313
import TaskListItem from "./TaskListItem";

src/components/tasks/TaskListsContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}

src/repositories/interfaces.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)