fix(task): replace Date.now with nanoid for unique keys and update task interface

This commit is contained in:
2026-04-27 14:50:06 +02:00
parent ef06f22edc
commit 0e3a70a454
6 changed files with 19 additions and 14 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
export interface Task {
id: number;
id: string;
title: string;
completed: boolean;
createdAt: string;