From e3b2df6e2ccb80a88de30825eb5197df87f3d0a8 Mon Sep 17 00:00:00 2001 From: Krao Hasanee Date: Mon, 8 Jun 2026 14:16:11 -0400 Subject: [PATCH] fix: restore popupOverlayStyle import in ExternalMyInvoices Removed during popup refactor but still used by +Invoice form popup. Co-Authored-By: Claude Sonnet 4.6 --- .claude/settings.local.json | 3 ++- src/pages/external/ExternalMyInvoices.jsx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index bfaee62..eca999d 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -14,7 +14,8 @@ "Bash(git push *)", "Bash(vercel --prod --yes)", "Bash(sed -n '1,15p' src/pages/external/ExternalMyInvoices.jsx)", - "Bash(sed -n '1,15p' src/pages/client/ClientMyInvoices.jsx)" + "Bash(sed -n '1,15p' src/pages/client/ClientMyInvoices.jsx)", + "Bash(git commit -q -m 'fix: restore popupOverlayStyle import in ExternalMyInvoices *)" ] } } diff --git a/src/pages/external/ExternalMyInvoices.jsx b/src/pages/external/ExternalMyInvoices.jsx index e90c2f5..8a8a7ac 100644 --- a/src/pages/external/ExternalMyInvoices.jsx +++ b/src/pages/external/ExternalMyInvoices.jsx @@ -9,6 +9,7 @@ import { readPageCache, writePageCache } from '../../lib/pageCache'; import { useSortable } from '../../hooks/useSortable'; import { isCompletedVersionEligible } from '../../lib/invoiceVersionRules'; import SubcontractorInvoiceForm from '../../components/SubcontractorInvoiceForm'; +import { popupOverlayStyle, popupSurfaceStyle } from '../../lib/popupStyles'; import InvoiceDetailPopup, { POPUP_FIELD_LABEL } from '../../components/InvoiceDetailPopup'; import InvoicePopupTable from '../../components/InvoicePopupTable'; import { generateSubcontractorPOPDF } from '../../lib/invoice';