@hoddy-ui/core 2.5.27 → 2.5.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoddy-ui/core",
3
- "version": "2.5.27",
3
+ "version": "2.5.29",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -93,7 +93,7 @@ const FlashMessage: React.FC = () => {
93
93
  }
94
94
  unsubscribe();
95
95
  };
96
- }, [message, opacity, translateY]);
96
+ }, []);
97
97
 
98
98
  const animatedStyle = useAnimatedStyle(() => {
99
99
  return {
@@ -128,7 +128,7 @@ const FlashMessage: React.FC = () => {
128
128
  },
129
129
  });
130
130
 
131
- // if (!message) return null;
131
+ if (!message) return null;
132
132
 
133
133
  return (
134
134
  <Animated.View style={[styles.root, animatedStyle]}>