Skip to content

Commit

Permalink
Merge pull request #33 from UniqueClone/main
Browse files Browse the repository at this point in the history
Fixing stamp duty percentage.
  • Loading branch information
UniqueClone authored Jul 16, 2024
2 parents fc8efe5 + 678a588 commit b17829c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MortgageDetails/MortgageDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const MortgageDetails: React.FC<MortgageDetailsProps> = (
</Text>
<Text variant="medium">
Stamp Duty:{" "}
{formatter.format(houseValue * 0.1)}
{formatter.format(houseValue * 0.01)}
</Text>
</Stack>
),
Expand Down

0 comments on commit b17829c

Please sign in to comment.