diff --git a/web/src/App.tsx b/web/src/App.tsx
index 79ed838..17bc640 100644
--- a/web/src/App.tsx
+++ b/web/src/App.tsx
@@ -319,9 +319,22 @@ export default function App() {
- {folders.map(f=> (
-
- ))}
+ {folders.map(f=> {
+ const displayName = f.name.replace(/\s*\(\d+\)\s*$/, '');
+ return (
+
+ );
+ })}