From 53daadfcd93d5dc94ab17e523da9f701fa0e424a Mon Sep 17 00:00:00 2001 From: Antoine Dewez <44063631+Zewed@users.noreply.github.com> Date: Tue, 8 Oct 2024 16:12:35 +0200 Subject: [PATCH] feat(frontend): add xlsx (#3340) # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --- frontend/app/quality-assistant/AssistantTab/AssistantTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/quality-assistant/AssistantTab/AssistantTab.tsx b/frontend/app/quality-assistant/AssistantTab/AssistantTab.tsx index 1fadcbc6d4ee..75324db5fc12 100644 --- a/frontend/app/quality-assistant/AssistantTab/AssistantTab.tsx +++ b/frontend/app/quality-assistant/AssistantTab/AssistantTab.tsx @@ -23,7 +23,7 @@ interface AssistantTabProps { setSelectedTab: (tab: string) => void; } -const FILE_TYPES = ["pdf", "docx", "doc", "txt"]; +const FILE_TYPES = ["pdf", "docx", "doc", "txt", "xlsx", "xls"]; const useAssistantData = () => { const [assistants, setAssistants] = useState([]);