refactor: use UUID for envelope id to prevent accidental deletion

This commit is contained in:
rustmailer
2026-03-18 01:04:41 +08:00
parent 8a42fcdb4a
commit d690f57290
37 changed files with 393 additions and 393 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ import { useMutation, useQueryClient } from '@tanstack/react-query';
import { toast } from './use-toast';
export interface UpdateTagsParams {
updates: Record<number, number[]>;
updates: Record<number, string[]>;
tags: string[];
}