Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
uncoolzero committed Sep 6, 2023
1 parent 2487e03 commit 8f54410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ui/src/components/Nav/Buttons/SunButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const PriceButton: FC<ButtonProps> = ({ ...props }) => {
const isLoading = season.eq(NEW_BN);
const startIcon = isTiny ? undefined : (
<img
src={bySeason[0].rewardBeans.eq(0) || awaiting ? drySeasonIcon : rainySeasonIcon}
src={bySeason[0]?.rewardBeans.eq(0) || awaiting ? drySeasonIcon : rainySeasonIcon}
css={{
width: 25,
height: 25,
Expand Down

0 comments on commit 8f54410

Please sign in to comment.