diff --git a/src/app/components/MediaManager.tsx b/src/app/components/MediaManager.tsx
index b65de38..44068ef 100644
--- a/src/app/components/MediaManager.tsx
+++ b/src/app/components/MediaManager.tsx
@@ -1,4 +1,4 @@
-import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
+import { useCallback, useEffect, useRef, useState } from 'react';
import {
AlignLeft,
ArrowLeft,
@@ -23,7 +23,6 @@ import {
Home,
Image as ImageIcon,
Loader2,
- Menu,
MoreVertical,
Move,
Pencil,
@@ -251,6 +250,7 @@ function EntryIcon({ entry }: { entry: EntryInfo }) {
// ─── ActionsModal ─────────────────────────────────────────────────────────────
interface FolderManagementActions {
+ onMountFolder: () => void;
onNewFolder: () => void;
onNewFile: () => void;
onUpload: () => void;
@@ -294,6 +294,11 @@ function ActionsModal({ entry, onClose, onOpen, onMount, onDownload, onRename, o
{/* Folder management items — current-folder context (header Actions) */}
{fm && (
<>
+
+