diff --git a/web/components/amount-input.tsx b/web/components/amount-input.tsx
index 0a1c5431..dcc29465 100644
--- a/web/components/amount-input.tsx
+++ b/web/components/amount-input.tsx
@@ -79,7 +79,7 @@ export function AmountInput(props: {
Remaining balance
- {formatMoney(remainingBalance)}
+ {formatMoney(Math.floor(remainingBalance))}
{user.balance !== 1000 && }
diff --git a/web/components/profile-menu.tsx b/web/components/profile-menu.tsx
index 1ded6378..50d2fcbc 100644
--- a/web/components/profile-menu.tsx
+++ b/web/components/profile-menu.tsx
@@ -87,7 +87,7 @@ function ProfileSummary(props: { user: User | undefined }) {
{user?.name}
- {user ? formatMoney(user.balance) : ' '}
+ {user ? formatMoney(Math.floor(user.balance)) : ' '}