diff --git a/src/components/Simulator/screens/SendReceive/index.tsx b/src/components/Simulator/screens/SendReceive/index.tsx index 6d3e09f06d9..a82ab66120a 100644 --- a/src/components/Simulator/screens/SendReceive/index.tsx +++ b/src/components/Simulator/screens/SendReceive/index.tsx @@ -1,4 +1,5 @@ import React, { useEffect, useMemo, useState } from "react" +import isChromatic from "chromatic" import type { PhoneScreenProps } from "@/lib/types" @@ -24,7 +25,8 @@ import { Success } from "./Success" export const SendReceive = ({ nav, ctaLabel }: PhoneScreenProps) => { const { progressStepper, step } = nav const fetchedPrice = useEthPrice() - const ethPrice = fetchedPrice > 1 ? fetchedPrice : FALLBACK_ETH_PRICE + const ethPrice = + fetchedPrice > 1 && !isChromatic() ? fetchedPrice : FALLBACK_ETH_PRICE const ethReceiveAmount = USD_RECEIVE_AMOUNT / ethPrice const [chosenAmount, setChosenAmount] = useState(0) const ethChosenAmount = chosenAmount / ethPrice