diff --git a/packages/mobile/src/screens/notifications-screen/Notifications/TipReceivedNotification.tsx b/packages/mobile/src/screens/notifications-screen/Notifications/TipReceivedNotification.tsx index c59bcda8311..310bc8d03ac 100644 --- a/packages/mobile/src/screens/notifications-screen/Notifications/TipReceivedNotification.tsx +++ b/packages/mobile/src/screens/notifications-screen/Notifications/TipReceivedNotification.tsx @@ -84,7 +84,7 @@ export const TipReceivedNotification = ( const { data: reaction } = useReaction(tipTxSignature, { // Only fetch if we don't have a reaction in the notification - enabled: notificationReactionValue !== null + enabled: notificationReactionValue === null }) // Use the reaction from the query, falling back to notification data diff --git a/packages/mobile/src/screens/notifications-screen/Reaction/Reaction.tsx b/packages/mobile/src/screens/notifications-screen/Reaction/Reaction.tsx index 2d111486226..a0ee3377eb0 100644 --- a/packages/mobile/src/screens/notifications-screen/Reaction/Reaction.tsx +++ b/packages/mobile/src/screens/notifications-screen/Reaction/Reaction.tsx @@ -111,7 +111,7 @@ export const Reaction = (props: ReactionProps) => { useNativeDriver: true }).start() } - }) + }, [previousStatus, status, scale, scaleProp]) const animatedStyles = { transform: [{ scale }], diff --git a/packages/web/src/components/notification/Notification/TipReceivedNotification.tsx b/packages/web/src/components/notification/Notification/TipReceivedNotification.tsx index 01920160aee..f624465b522 100644 --- a/packages/web/src/components/notification/Notification/TipReceivedNotification.tsx +++ b/packages/web/src/components/notification/Notification/TipReceivedNotification.tsx @@ -70,7 +70,7 @@ export const TipReceivedNotification = ( const { data: reaction } = useReaction(tipTxSignature, { // Only fetch if we don't have a reaction in the notification - enabled: notificationReactionValue !== null + enabled: notificationReactionValue === null }) // Use the reaction from the query, falling back to notification data