Skip to content

Commit

Permalink
fix: Rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Dec 5, 2024
1 parent dbd4569 commit 5569c90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReceiptLongIcon from "@mui/icons-material/ReceiptLong";
import { hasFeatureFlag } from 'lib/featureFlags';
import { hasFeatureFlag } from "lib/featureFlags";
import React from "react";
import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder";
import ModalSection from "ui/editor/ModalSection";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ describe("useFeeBreakdown() hook", () => {

const result = useFeeBreakdown();

expect(result?.exemption).toEqual(
expect(result?.exemptions).toEqual(
expect.not.arrayContaining(["someReason"])
);
expect(result?.exemption).toEqual(
expect(result?.exemptions).toEqual(
expect.not.arrayContaining(["someOtherReason"])
);
});
Expand Down
2 changes: 0 additions & 2 deletions editor.planx.uk/src/pages/Pay/MakePayment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,6 @@ export default function MakePayment({
showInviteToPay={false}
hideFeeBanner={true}
paymentStatus={payment?.state.status}
// TODO: Handle fee breakdown for ITP scenarios
showFeeBreakdown={false}
/>
)}
</>
Expand Down

0 comments on commit 5569c90

Please sign in to comment.