From 5a0cfe347777f74383a8a6a6e7ab16a942769eb4 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 6 Jul 2025 20:49:43 +0200 Subject: [PATCH] Fix "export" --- src/components/JobForm.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/JobForm.tsx b/src/components/JobForm.tsx index 2982f7c..093cb8d 100644 --- a/src/components/JobForm.tsx +++ b/src/components/JobForm.tsx @@ -8,7 +8,7 @@ import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@ import { IndJobStatusOptions, IndJobRecordNoId } from '@/lib/pbtypes'; import { IndJob } from '@/lib/types'; import { parseISKAmount } from '@/utils/priceUtils'; -import { Import, Export } from 'lucide-react'; +import { Import, Upload } from 'lucide-react'; import { useToast } from '@/components/ui/use-toast'; interface JobFormProps { @@ -316,4 +316,3 @@ const JobForm: React.FC = ({ job, onSubmit, onCancel }) => { }; export default JobForm; -