Skip to content

Commit

Permalink
update[UserPageView]: Update Previous donations to have currency disp…
Browse files Browse the repository at this point in the history
…alyed
  • Loading branch information
Fredrik Marjoni committed Mar 19, 2026
1 parent 6901cd0 commit 44b0811
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private VBox createDonationsSection() {
String orgName = (org != null) ? org.name() : "Unknown Organization";

Label donationLabel = new Label(
orgName + " • " + donation.amount() + " • " + donation.date()
orgName + " • " + donation.amount() + " kr" + " • " + donation.date()
);
donationsBox.getChildren().add(donationLabel);
}
Expand Down

0 comments on commit 44b0811

Please sign in to comment.