-
- {t('generic_something_went_wrong')}
-
-
- )
-}
diff --git a/services/web/frontend/js/features/history/components/history-file-tree.tsx b/services/web/frontend/js/features/history/components/history-file-tree.tsx
index 296e15115f..39cf775936 100644
--- a/services/web/frontend/js/features/history/components/history-file-tree.tsx
+++ b/services/web/frontend/js/features/history/components/history-file-tree.tsx
@@ -8,7 +8,7 @@ import {
import HistoryFileTreeFolderList from './file-tree/history-file-tree-folder-list'
export default function HistoryFileTree() {
- const { selection, error } = useHistoryContext()
+ const { selection } = useHistoryContext()
const fileTree = useMemo(
() => reduce(selection.files, reducePathsToTree, []),
@@ -25,10 +25,6 @@ export default function HistoryFileTree() {
[sortedFileTree]
)
- if (error) {
- return null
- }
-
return (