From d62f46212908640b99867643bc91d0d83750bc05 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sun, 7 Dec 2025 20:45:01 +0100 Subject: [PATCH] fix --- frontend/src/documents/components/DocumentsListContainer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/documents/components/DocumentsListContainer.tsx b/frontend/src/documents/components/DocumentsListContainer.tsx index e599e55..dd9f50b 100644 --- a/frontend/src/documents/components/DocumentsListContainer.tsx +++ b/frontend/src/documents/components/DocumentsListContainer.tsx @@ -3,12 +3,14 @@ import React from 'react'; interface DocumentsListContainerProps { children: React.ReactNode; clearSelection: () => void; + iconSize?: number; [key: string]: any; } const DocumentsListContainer: React.FC = ({ children, clearSelection, + iconSize: _iconSize, ...props }) => { return (