diff --git a/src/components/BatchTransactionForm.tsx b/src/components/BatchTransactionForm.tsx index ac08939..ec704a8 100644 --- a/src/components/BatchTransactionForm.tsx +++ b/src/components/BatchTransactionForm.tsx @@ -173,22 +173,6 @@ const BatchTransactionForm: React.FC = ({ onClose, on setTransactionGroups(groups); }; - // Read clipboard on mount - useEffect(() => { - const readClipboard = async () => { - try { - const text = await navigator.clipboard.readText(); - if (text.trim()) { - setPastedData(text); - handlePaste(text); - } - } catch (err) { - // Clipboard reading failed, ignore silently - } - }; - readClipboard(); - }, []); - const handleAssignJob = (groupIndex: number, jobId: string) => { setTransactionGroups(prev => { const newGroups = [...prev]; diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index b4dbcc8..5bfde08 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -262,27 +262,7 @@ const Index = () => {