Skip to content

Commit

Permalink
feat: Use a bigger version of the reward icon as the campaign notific…
Browse files Browse the repository at this point in the history
…ations image
  • Loading branch information
kevinszuchet committed Sep 4, 2024
1 parent c132476 commit a663884
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ export default function CampaignGasPriceHigherThanExpectedNotification({
return (
<NotificationItem
image={{
// image: TODO maybe using a common image for all campaign related notifications
image: <Reward /> // This should be the icon
image: <Reward width="48" height="48" />
}}
timestamp={notification.timestamp}
isNew={!notification.read}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ export default function CampaignOutOfFundsNotification({
return (
<NotificationItem
image={{
// image: TODO maybe using a common image for all campaign related notifications
image: <Reward /> // This should be the icon
image: <Reward width="48" height="48" />
}}
timestamp={notification.timestamp}
isNew={!notification.read}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ export default function CampaignOutOfStockNotification({
return (
<NotificationItem
image={{
// image: TODO maybe using a common image for all campaign related notifications
image: <Reward /> // This should be the icon
image: <Reward width="48" height="48" />
}}
timestamp={notification.timestamp}
isNew={!notification.read}
Expand Down

0 comments on commit a663884

Please sign in to comment.