@umituz/react-native-design-system 4.25.17 → 4.25.19

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": "@umituz/react-native-design-system",
3
- "version": "4.25.17",
3
+ "version": "4.25.19",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -108,8 +108,6 @@ export function createEnvConfig(
108
108
  const testStoreKey = config.revenueCat?.testStoreKey;
109
109
 
110
110
  if (isExpoGo && testStoreKey) {
111
- if (__DEV__) {
112
- }
113
111
  return testStoreKey;
114
112
  }
115
113
 
@@ -36,15 +36,11 @@ export const SplashScreen: React.FC<SplashScreenProps> = ({
36
36
  const [timedOut, setTimedOut] = useState(false);
37
37
 
38
38
  const handleTimeout = useCallback(() => {
39
- if (__DEV__) {
40
- }
41
39
  setTimedOut(true);
42
40
  onTimeout?.();
43
41
  }, [maxDuration, onTimeout]);
44
42
 
45
43
  useEffect(() => {
46
- if (__DEV__) {
47
- }
48
44
  onReady?.();
49
45
  }, [appName, visible, onReady]);
50
46
 
@@ -65,14 +61,9 @@ export const SplashScreen: React.FC<SplashScreenProps> = ({
65
61
 
66
62
 
67
63
  if (!visible) {
68
- if (__DEV__) {
69
- }
70
64
  return null;
71
65
  }
72
66
 
73
- if (__DEV__) {
74
- }
75
-
76
67
  const iconPlaceholderColor = colors.iconPlaceholder ?? `${colors.text}30`;
77
68
 
78
69
  const contentStyle = {