diff --git a/src/components/VideoEditor.tsx b/src/components/VideoEditor.tsx
index db5c3793..8b90bfe5 100644
--- a/src/components/VideoEditor.tsx
+++ b/src/components/VideoEditor.tsx
@@ -143,6 +143,7 @@ export default function VideoEditor() {
file, duration, recipe, status, progress,
result, error, updateRecipe,
handleFileSelect, fileError, handleExport, cancelExport, reset, resetSettings,
+ undo,redo,canUndo,canRedo,
videoRef,
seekTo,
overlayFile, setOverlayFile,
@@ -185,7 +186,7 @@ export default function VideoEditor() {
});
}
}, [status]);
-
+
const isProcessing = status === "loading-engine" || status === "exporting";
const isMac = typeof navigator !== "undefined" && /Mac/i.test(navigator.platform);
@@ -202,7 +203,7 @@ export default function VideoEditor() {
return (
-
+
@@ -475,7 +476,37 @@ export default function VideoEditor() {
-
+
+
+
+
+