Skip to content

Commit

Permalink
fix: limit orders crashing on confirm (#8908)
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed Feb 20, 2025
1 parent b5fc012 commit f06ccef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const TradeSuccess = ({
}: TradeSuccessProps) => {
const translate = useTranslate()
const tradeQuote = useAppSelector(selectActiveQuote)
const receiveAddress = tradeQuote!.receiveAddress
const receiveAddress = tradeQuote?.receiveAddress

const { isOpen, onToggle: handleToggle } = useDisclosure({
defaultIsOpen: false,
Expand Down

0 comments on commit f06ccef

Please sign in to comment.