From 7a326051897b4435e01ecc3f2e49d60a29aba354 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 22 Apr 2026 20:40:32 +0200 Subject: [PATCH] Fix: Import missing 'cn' and 'X' in App.tsx. Resolves blank screen runtime error. --- src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index a5a9129..1c6c943 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,5 +1,7 @@ import React, { useState, useMemo, useEffect } from 'react'; import * as XLSX from 'xlsx'; +import { X } from 'lucide-react'; +import { cn } from './lib/utils'; import { AppState, ExcelRow, resolveColumnIndices, COLUMNS } from './types'; import { ColumnsProvider } from './contexts/ColumnsContext'; import { Sidebar } from './components/Sidebar';