We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b63fd4 commit 85f17e0Copy full SHA for 85f17e0
app/components/dialogs/upload-video-dialog.tsx
@@ -105,6 +105,7 @@ function UploadVideoDialogChild() {
105
},
106
});
107
108
+ // biome-ignore lint/correctness/useExhaustiveDependencies: only check for trimmed video when dialog is opened
109
useEffect(() => {
110
form.reset();
111
@@ -118,13 +119,7 @@ function UploadVideoDialogChild() {
118
119
120
121
}
- }, [
122
- isUploadDialogOpen,
123
- customFileToUpload,
124
- getVideoTitleFromFileName,
125
- form.reset,
126
- form.update,
127
- ]);
+ }, [isUploadDialogOpen]);
128
129
return (
130
<Credenza
0 commit comments