Use export name in export deletion dialog instead of file id (#11049)

* use export name in dialog instead of file id

* add type for deletion
This commit is contained in:
Josh Hawkins
2024-04-20 08:44:59 -05:00
committed by GitHub
parent 8092b28710
commit 57800d3843
3 changed files with 30 additions and 9 deletions

View File

@@ -7,3 +7,8 @@ export type Export = {
thumb_path: string;
in_progress: boolean;
};
export type DeleteClipType = {
file: string;
exportName: string;
};