Skip to content

Commit

Permalink
Temporary hide Moonpay (#4038)
Browse files Browse the repository at this point in the history
* temporary hide moonpay

* remove onramp option
  • Loading branch information
EnricoBarbieri1997 authored Feb 6, 2025
1 parent 098199f commit 6db1768
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 0 additions & 5 deletions packages/web/modals/fiat-on-ramp-selection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ const Options = (
subtitle: string;
}
> => [
{
...FiatRampDisplayInfos.moonpay,
initialAsset: "OSMO",
subtitle: t("components.fiatOnrampSelection.moonpaySubtitle"),
},
{
...FiatRampDisplayInfos.kado,
initialAsset: "USDC",
Expand Down
3 changes: 1 addition & 2 deletions packages/web/modals/fiat-ramps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { IconButton } from "~/components/ui/button";
import { FiatRampKey } from "~/integrations";
import { Kado } from "~/integrations/kado";
import { Layerswap } from "~/integrations/layerswap";
import { Moonpay } from "~/integrations/moonpay";
import { OnrampMoney } from "~/integrations/onrampmoney";
import { useTransakModal } from "~/integrations/transak";
import { ModalBase, ModalBaseProps } from "~/modals";
Expand Down Expand Up @@ -71,7 +70,7 @@ export const FiatRampsModal: FunctionComponent<
case "kado":
return <Kado {...props} />;
case "moonpay":
return <Moonpay {...props} />;
return null;
case "onrampmoney":
return <OnrampMoney {...props} />;
case "layerswapcoinbase":
Expand Down

0 comments on commit 6db1768

Please sign in to comment.