diff --git a/e2e/fedimint.spec.ts b/e2e/fedimint.spec.ts
index 575054fa..6ba9d244 100644
--- a/e2e/fedimint.spec.ts
+++ b/e2e/fedimint.spec.ts
@@ -118,7 +118,7 @@ test("fedmint join, receive, send", async ({ page }) => {
await expect(
page
.locator("div")
- .filter({ hasText: /^100 SATS$/ })
+ .filter({ hasText: /^100 eSATS$/ })
.nth(1)
).toBeVisible();
diff --git a/src/components/Amount.tsx b/src/components/Amount.tsx
index 4e28499a..df2c01a6 100644
--- a/src/components/Amount.tsx
+++ b/src/components/Amount.tsx
@@ -18,6 +18,7 @@ export function AmountSats(props: {
amountSats: bigint | number | undefined;
icon?: "lightning" | "community" | "chain" | "plus" | "minus";
denominationSize?: "sm" | "lg" | "xl";
+ isFederation?: boolean;
}) {
const i18n = useI18n();
return (
@@ -54,14 +55,18 @@ export function AmountSats(props: {
Number(props.amountSats) === 0
}
>
- {i18n.t("common.sats")}
+ {props.isFederation
+ ? i18n.t("common.e_sats")
+ : i18n.t("common.sats")}