Skip to content

Commit

Permalink
fix: null check on option links (#3897)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludtkemorgan authored Feb 23, 2024
1 parent 74a7446 commit 603ee54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ const SelectAndOrder = ({
{option.collectAddress && (
<div
className={`${
isNotLastItem && (option.description || option.links.length > 0) ? "-mt-4" : "mt-0"
isNotLastItem && (option.description || option.links?.length > 0) ? "-mt-4" : "mt-0"
}`}
>
({t("listings.providesAdditionalFields.info")})
Expand Down

0 comments on commit 603ee54

Please sign in to comment.