diff --git a/frontend/src/components/FileExplorer.tsx b/frontend/src/components/FileExplorer.tsx index dbb727b..defb715 100644 --- a/frontend/src/components/FileExplorer.tsx +++ b/frontend/src/components/FileExplorer.tsx @@ -788,7 +788,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (ext === 'pdf') { return ( -
+
PDF
); @@ -797,7 +797,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { const fallbackIcon = (() => { if (isImage) { return ( -
+
); @@ -805,7 +805,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (isVideo) { return ( -
+
); @@ -813,7 +813,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (['mp3', 'wav', 'flac', 'ogg', 'm4a'].includes(ext)) { return ( -
+
); @@ -821,7 +821,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (['js', 'ts', 'jsx', 'tsx', 'py', 'go', 'rs', 'java', 'c', 'cpp', 'html', 'css', 'json'].includes(ext)) { return ( -
+
); @@ -829,7 +829,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (['zip', 'tar', 'gz', 'rar', '7z'].includes(ext)) { return ( -
+
);