...
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-11-16 12:04:09 +08:00
parent 72c6791d93
commit 0e3d41829c
19 changed files with 215 additions and 312 deletions

View File

@@ -36,7 +36,7 @@ const FolderSelector: React.FC<FolderSelectorProps> = ({ folders }) => {
<Folder />
<div className="flex-1 flex gap-2">
<span className="group-hover:text-blue-500">
{folder.name}
{folder.id}. {folder.name}
</span>
<span>({folder.total_pairs})</span>
</div>

View File

@@ -3,7 +3,6 @@
import { redirect } from "next/navigation";
import { getServerSession } from "next-auth";
import {
getFoldersByOwner,
getFoldersWithTotalPairsByOwner,
getOwnerByFolderId,
} from "@/lib/services/folderService";