diff --git a/public/i18n/en.json b/public/i18n/en.json
index 9030f1aa..15685d40 100644
--- a/public/i18n/en.json
+++ b/public/i18n/en.json
@@ -149,7 +149,7 @@
"what_for": "What's this for?",
"method_help": {
"title": "Receive Method",
- "body": "Lightning receives under 200,000 sats go into your federation by default. Anything higher than that goes into a lightning channel."
+ "body": "Lightning receives will automatically go into your chosen federation. You can swap to self-custodial later if you want."
}
},
"send": {
diff --git a/src/routes/Receive.tsx b/src/routes/Receive.tsx
index 76af57c8..13174b86 100644
--- a/src/routes/Receive.tsx
+++ b/src/routes/Receive.tsx
@@ -3,7 +3,7 @@ import {
MutinyInvoice
} from "@mutinywallet/mutiny-wasm";
import { useNavigate } from "@solidjs/router";
-import { ArrowLeftRight, CircleHelp, Users, Zap } from "lucide-solid";
+import { ArrowLeftRight, CircleHelp, Users } from "lucide-solid";
import {
createEffect,
createMemo,
@@ -102,20 +102,13 @@ function FeeWarning(props: { fee: bigint; flavor: ReceiveFlavor }) {
);
}
-function ReceiveMethodHelp(props: { amountSats: bigint }) {
+function ReceiveMethodHelp() {
const i18n = useI18n();
const [open, setOpen] = createSignal(false);
return (
<>
-
+