Merge pull request #5012 from Infisical/fix/cardDeclinedNotClosingModal

fix: decline card modal not closing on the billing page
This commit is contained in:
carlosmonastyrski
2025-12-10 17:03:44 -03:00
committed by GitHub

View File

@@ -170,7 +170,7 @@ export const Navbar = () => {
const [isOrgSelectOpen, setIsOrgSelectOpen] = useState(false);
const location = useLocation();
const isBillingPage = location.pathname === "/organization/billing";
const isBillingPage = location.pathname === `/organizations/${currentOrg.id}/billing`;
const isModalIntrusive = Boolean(!isBillingPage && isCardDeclinedMoreThan30Days);