Feature: Smooth sidebar animation, fixed theme button clipping, moved import to profile menu, added custom webapp context menu, and polished TickTick style detail panel

This commit is contained in:
2026-08-20 14:34:17 +09:00
parent ed8c9187a7
commit 9c01516124
6 changed files with 308 additions and 48 deletions
+2 -1
View File
@@ -1,4 +1,4 @@
"use client";
"use client";
import { useState, useCallback, useEffect } from "react";
import { Sidebar } from "./Sidebar";
import { TaskList, Task, List, User } from "../tasks/TaskList";
@@ -361,6 +361,7 @@ export function AppShell({ user, isDemo = false }: AppShellProps) {
refresh();
}}
listId={selectedTask.listId}
listName={lists.find((l) => l.id === selectedTask.listId)?.name}
isDemo={isDemo}
onDemoUpdateTask={handleDemoUpdateTask}
onDemoDeleteTask={handleDemoDeleteTask}