From db35c0233fd997df5bbf9b406f612f7cf59c5b75 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Tue, 28 Apr 2026 09:22:34 +0200 Subject: [PATCH] feat: add Excel-style filters to Check columns and fix TS lint errors --- lint_output_2.txt | 5 +++++ src/components/ProductDescriptions.tsx | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 lint_output_2.txt diff --git a/lint_output_2.txt b/lint_output_2.txt new file mode 100644 index 0000000..e8dd9b3 --- /dev/null +++ b/lint_output_2.txt @@ -0,0 +1,5 @@ + +> react-example@0.0.0 lint +> tsc --noEmit + +src/components/ProductDescriptions.tsx(205,21): error TS2304: Cannot find name 'TabType'. diff --git a/src/components/ProductDescriptions.tsx b/src/components/ProductDescriptions.tsx index d22096d..631331e 100644 --- a/src/components/ProductDescriptions.tsx +++ b/src/components/ProductDescriptions.tsx @@ -6,6 +6,8 @@ import { cn } from '../lib/utils'; import { ColumnFilterPopover } from './ColumnFilterPopover'; import { usePersistentState } from '../contexts/FilterContext'; +type TabType = 'all' | 'missingLongDE' | 'missingLongEN' | 'missingShortDE' | 'missingShortEN' | 'complete' | 'incomplete'; + interface ProductDescriptionsProps { data: ExcelRow[]; headers: string[];