react-native-inapp-inspector 2.2.4 → 2.2.6
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/README.md +0 -10
- package/dist/commonjs/components/BrandSquareIcon.js +51 -117
- package/dist/commonjs/components/Inspector/InspectorHeader.js +0 -73
- package/dist/commonjs/components/Inspector/MainScreen.js +0 -4
- package/dist/commonjs/components/Inspector/SettingsPanel.js +2 -107
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/helpers/index.d.ts +0 -1
- package/dist/commonjs/helpers/index.js +0 -1
- package/dist/commonjs/index.d.ts +1 -1
- package/dist/commonjs/index.js +2 -19
- package/dist/commonjs/native/NativeInspector.js +50 -26
- package/dist/esm/components/BrandSquareIcon.js +52 -118
- package/dist/esm/components/Inspector/InspectorHeader.js +0 -73
- package/dist/esm/components/Inspector/MainScreen.js +0 -4
- package/dist/esm/components/Inspector/SettingsPanel.js +2 -107
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/helpers/index.d.ts +0 -1
- package/dist/esm/helpers/index.js +0 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +2 -12
- package/dist/esm/native/NativeInspector.js +51 -27
- package/ios/NetworkInspectorModule.mm +34 -19
- package/package.json +2 -2
- package/src/components/BrandSquareIcon.tsx +109 -118
- package/src/components/Inspector/InspectorHeader.tsx +0 -93
- package/src/components/Inspector/MainScreen.tsx +0 -4
- package/src/components/Inspector/SettingsPanel.tsx +2 -128
- package/src/constants/version.ts +1 -1
- package/src/helpers/index.ts +0 -1
- package/src/index.tsx +2 -24
- package/src/native/NativeInspector.ts +56 -24
- package/dist/commonjs/components/Inspector/TelemetryConsentModal.d.ts +0 -3
- package/dist/commonjs/components/Inspector/TelemetryConsentModal.js +0 -368
- package/dist/commonjs/helpers/telemetry.d.ts +0 -99
- package/dist/commonjs/helpers/telemetry.js +0 -398
- package/dist/esm/components/Inspector/TelemetryConsentModal.d.ts +0 -3
- package/dist/esm/components/Inspector/TelemetryConsentModal.js +0 -331
- package/dist/esm/helpers/telemetry.d.ts +0 -99
- package/dist/esm/helpers/telemetry.js +0 -380
- package/src/components/Inspector/TelemetryConsentModal.tsx +0 -416
- package/src/helpers/telemetry.ts +0 -505
|
@@ -1,416 +0,0 @@
|
|
|
1
|
-
import React, {useState, useEffect} from 'react';
|
|
2
|
-
import {
|
|
3
|
-
Modal,
|
|
4
|
-
View,
|
|
5
|
-
Text,
|
|
6
|
-
TouchableOpacity,
|
|
7
|
-
StyleSheet,
|
|
8
|
-
Animated,
|
|
9
|
-
Platform,
|
|
10
|
-
} from 'react-native';
|
|
11
|
-
import Svg, {Path} from 'react-native-svg';
|
|
12
|
-
import {BrandSquareIcon} from '../BrandSquareIcon';
|
|
13
|
-
import {
|
|
14
|
-
getTelemetryConsentStatus,
|
|
15
|
-
setTelemetryConsent,
|
|
16
|
-
sendSessionTelemetryPing,
|
|
17
|
-
} from '../../helpers/telemetry';
|
|
18
|
-
|
|
19
|
-
// ─── Inline Crisp SVG Icons ───────────────────────────────────────────────────
|
|
20
|
-
|
|
21
|
-
const ShieldCheckSvg = ({size = 15, color = '#7C3AED'}: {size?: number; color?: string}) => (
|
|
22
|
-
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
|
23
|
-
<Path
|
|
24
|
-
d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"
|
|
25
|
-
stroke={color}
|
|
26
|
-
strokeWidth="2"
|
|
27
|
-
strokeLinecap="round"
|
|
28
|
-
strokeLinejoin="round"
|
|
29
|
-
/>
|
|
30
|
-
<Path
|
|
31
|
-
d="M9 12l2 2 4-4"
|
|
32
|
-
stroke={color}
|
|
33
|
-
strokeWidth="2"
|
|
34
|
-
strokeLinecap="round"
|
|
35
|
-
strokeLinejoin="round"
|
|
36
|
-
/>
|
|
37
|
-
</Svg>
|
|
38
|
-
);
|
|
39
|
-
|
|
40
|
-
const CheckSvg = ({size = 14, color = '#FFFFFF'}: {size?: number; color?: string}) => (
|
|
41
|
-
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
|
42
|
-
<Path
|
|
43
|
-
d="M20 6L9 17l-5-5"
|
|
44
|
-
stroke={color}
|
|
45
|
-
strokeWidth="2.4"
|
|
46
|
-
strokeLinecap="round"
|
|
47
|
-
strokeLinejoin="round"
|
|
48
|
-
/>
|
|
49
|
-
</Svg>
|
|
50
|
-
);
|
|
51
|
-
|
|
52
|
-
const CloseSvg = ({size = 13, color = '#64748B'}: {size?: number; color?: string}) => (
|
|
53
|
-
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
|
54
|
-
<Path
|
|
55
|
-
d="M18 6L6 18M6 6l12 12"
|
|
56
|
-
stroke={color}
|
|
57
|
-
strokeWidth="2.2"
|
|
58
|
-
strokeLinecap="round"
|
|
59
|
-
strokeLinejoin="round"
|
|
60
|
-
/>
|
|
61
|
-
</Svg>
|
|
62
|
-
);
|
|
63
|
-
|
|
64
|
-
const GearSvg = ({size = 13, color = '#6366F1'}: {size?: number; color?: string}) => (
|
|
65
|
-
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
|
66
|
-
<Path
|
|
67
|
-
d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
|
|
68
|
-
stroke={color}
|
|
69
|
-
strokeWidth="2"
|
|
70
|
-
strokeLinecap="round"
|
|
71
|
-
strokeLinejoin="round"
|
|
72
|
-
/>
|
|
73
|
-
<Path
|
|
74
|
-
d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1Z"
|
|
75
|
-
stroke={color}
|
|
76
|
-
strokeWidth="2"
|
|
77
|
-
strokeLinecap="round"
|
|
78
|
-
strokeLinejoin="round"
|
|
79
|
-
/>
|
|
80
|
-
</Svg>
|
|
81
|
-
);
|
|
82
|
-
|
|
83
|
-
export const TelemetryConsentModal = () => {
|
|
84
|
-
const [visible, setVisible] = useState(false);
|
|
85
|
-
const fadeAnim = useState(new Animated.Value(0))[0];
|
|
86
|
-
const scaleAnim = useState(new Animated.Value(0.92))[0];
|
|
87
|
-
|
|
88
|
-
useEffect(() => {
|
|
89
|
-
let isMounted = true;
|
|
90
|
-
getTelemetryConsentStatus().then(status => {
|
|
91
|
-
if (isMounted && status === 'undetermined') {
|
|
92
|
-
setVisible(true);
|
|
93
|
-
Animated.parallel([
|
|
94
|
-
Animated.timing(fadeAnim, {
|
|
95
|
-
toValue: 1,
|
|
96
|
-
duration: 250,
|
|
97
|
-
useNativeDriver: true,
|
|
98
|
-
}),
|
|
99
|
-
Animated.spring(scaleAnim, {
|
|
100
|
-
toValue: 1,
|
|
101
|
-
friction: 8,
|
|
102
|
-
tension: 45,
|
|
103
|
-
useNativeDriver: true,
|
|
104
|
-
}),
|
|
105
|
-
]).start();
|
|
106
|
-
}
|
|
107
|
-
});
|
|
108
|
-
return () => {
|
|
109
|
-
isMounted = false;
|
|
110
|
-
};
|
|
111
|
-
}, [fadeAnim, scaleAnim]);
|
|
112
|
-
|
|
113
|
-
const handleDecision = async (granted: boolean) => {
|
|
114
|
-
Animated.parallel([
|
|
115
|
-
Animated.timing(fadeAnim, {
|
|
116
|
-
toValue: 0,
|
|
117
|
-
duration: 180,
|
|
118
|
-
useNativeDriver: true,
|
|
119
|
-
}),
|
|
120
|
-
Animated.timing(scaleAnim, {
|
|
121
|
-
toValue: 0.92,
|
|
122
|
-
duration: 180,
|
|
123
|
-
useNativeDriver: true,
|
|
124
|
-
}),
|
|
125
|
-
]).start(async () => {
|
|
126
|
-
setVisible(false);
|
|
127
|
-
await setTelemetryConsent(granted);
|
|
128
|
-
if (granted) {
|
|
129
|
-
// Immediately trigger the session initialization ping
|
|
130
|
-
sendSessionTelemetryPing({force: true});
|
|
131
|
-
}
|
|
132
|
-
});
|
|
133
|
-
};
|
|
134
|
-
|
|
135
|
-
if (!visible) return null;
|
|
136
|
-
|
|
137
|
-
return (
|
|
138
|
-
<Modal
|
|
139
|
-
transparent
|
|
140
|
-
visible={visible}
|
|
141
|
-
animationType="none"
|
|
142
|
-
statusBarTranslucent>
|
|
143
|
-
<View style={styles.overlay}>
|
|
144
|
-
<Animated.View
|
|
145
|
-
style={[
|
|
146
|
-
styles.card,
|
|
147
|
-
{
|
|
148
|
-
opacity: fadeAnim,
|
|
149
|
-
transform: [{scale: scaleAnim}],
|
|
150
|
-
},
|
|
151
|
-
]}>
|
|
152
|
-
{/* Top-Right Dismiss Icon Button */}
|
|
153
|
-
<TouchableOpacity
|
|
154
|
-
style={styles.topCloseButton}
|
|
155
|
-
onPress={() => handleDecision(false)}
|
|
156
|
-
hitSlop={10}
|
|
157
|
-
activeOpacity={0.7}>
|
|
158
|
-
<CloseSvg size={13} color="#64748B" />
|
|
159
|
-
</TouchableOpacity>
|
|
160
|
-
|
|
161
|
-
{/* Centered Enlarged Square Brand Icon Header */}
|
|
162
|
-
<View style={styles.headerSection}>
|
|
163
|
-
<View style={styles.iconHaloRing}>
|
|
164
|
-
<BrandSquareIcon size={54} />
|
|
165
|
-
</View>
|
|
166
|
-
|
|
167
|
-
<Text style={styles.title}>Help Improve In-App Inspector</Text>
|
|
168
|
-
<Text style={styles.subtitle}>Anonymous Diagnostic Insights</Text>
|
|
169
|
-
|
|
170
|
-
{/* Subheading instruction hint badge */}
|
|
171
|
-
<View style={styles.hintBadge}>
|
|
172
|
-
<GearSvg size={12} color="#6366F1" />
|
|
173
|
-
<Text style={styles.hintBadgeText}>
|
|
174
|
-
You can enable or disable this anytime in Settings
|
|
175
|
-
</Text>
|
|
176
|
-
</View>
|
|
177
|
-
</View>
|
|
178
|
-
|
|
179
|
-
{/* Description */}
|
|
180
|
-
<Text style={styles.description}>
|
|
181
|
-
To help us continually enhance tooling performance and compatibility,
|
|
182
|
-
would you mind sharing anonymous diagnostics (such as React Native
|
|
183
|
-
version, JavaScript engine, and device architecture)?
|
|
184
|
-
</Text>
|
|
185
|
-
|
|
186
|
-
{/* Privacy Callout Box */}
|
|
187
|
-
<View style={styles.privacyBadge}>
|
|
188
|
-
<View style={styles.privacyShieldWrapper}>
|
|
189
|
-
<ShieldCheckSvg size={15} color="#7C3AED" />
|
|
190
|
-
</View>
|
|
191
|
-
<Text style={styles.privacyText}>
|
|
192
|
-
<Text style={styles.privacyHighlight}>Privacy Guaranteed:</Text> We
|
|
193
|
-
strictly collect non-identifiable technical metrics. No user data,
|
|
194
|
-
passwords, tokens, or network payload bodies are ever captured.
|
|
195
|
-
</Text>
|
|
196
|
-
</View>
|
|
197
|
-
|
|
198
|
-
{/* Enhanced Action Buttons with Icons */}
|
|
199
|
-
<View style={styles.buttonRow}>
|
|
200
|
-
<TouchableOpacity
|
|
201
|
-
style={styles.declineButton}
|
|
202
|
-
onPress={() => handleDecision(false)}
|
|
203
|
-
activeOpacity={0.7}>
|
|
204
|
-
<CloseSvg size={12} color="#64748B" />
|
|
205
|
-
<Text style={styles.declineText}>Not Now</Text>
|
|
206
|
-
</TouchableOpacity>
|
|
207
|
-
|
|
208
|
-
<TouchableOpacity
|
|
209
|
-
style={styles.allowButton}
|
|
210
|
-
onPress={() => handleDecision(true)}
|
|
211
|
-
activeOpacity={0.85}>
|
|
212
|
-
<CheckSvg size={13} color="#FFFFFF" />
|
|
213
|
-
<Text style={styles.allowText}>Allow & Share</Text>
|
|
214
|
-
</TouchableOpacity>
|
|
215
|
-
</View>
|
|
216
|
-
</Animated.View>
|
|
217
|
-
</View>
|
|
218
|
-
</Modal>
|
|
219
|
-
);
|
|
220
|
-
};
|
|
221
|
-
|
|
222
|
-
const fontStack = Platform.select({
|
|
223
|
-
ios: {
|
|
224
|
-
fontFamily: 'System',
|
|
225
|
-
},
|
|
226
|
-
android: {
|
|
227
|
-
fontFamily: 'sans-serif',
|
|
228
|
-
},
|
|
229
|
-
default: {},
|
|
230
|
-
});
|
|
231
|
-
|
|
232
|
-
const styles = StyleSheet.create({
|
|
233
|
-
overlay: {
|
|
234
|
-
flex: 1,
|
|
235
|
-
backgroundColor: 'rgba(15, 23, 42, 0.56)',
|
|
236
|
-
justifyContent: 'center',
|
|
237
|
-
alignItems: 'center',
|
|
238
|
-
paddingHorizontal: 20,
|
|
239
|
-
zIndex: 999999,
|
|
240
|
-
},
|
|
241
|
-
card: {
|
|
242
|
-
width: '100%',
|
|
243
|
-
maxWidth: 356,
|
|
244
|
-
backgroundColor: '#FFFFFF',
|
|
245
|
-
borderRadius: 24,
|
|
246
|
-
borderWidth: 1,
|
|
247
|
-
borderColor: '#E2E8F0',
|
|
248
|
-
paddingHorizontal: 20,
|
|
249
|
-
paddingTop: 22,
|
|
250
|
-
paddingBottom: 20,
|
|
251
|
-
alignItems: 'center',
|
|
252
|
-
shadowColor: '#0F172A',
|
|
253
|
-
shadowOffset: {width: 0, height: 16},
|
|
254
|
-
shadowOpacity: 0.22,
|
|
255
|
-
shadowRadius: 32,
|
|
256
|
-
elevation: 24,
|
|
257
|
-
},
|
|
258
|
-
topCloseButton: {
|
|
259
|
-
position: 'absolute',
|
|
260
|
-
top: 14,
|
|
261
|
-
right: 14,
|
|
262
|
-
width: 28,
|
|
263
|
-
height: 28,
|
|
264
|
-
borderRadius: 14,
|
|
265
|
-
backgroundColor: '#F8FAFC',
|
|
266
|
-
justifyContent: 'center',
|
|
267
|
-
alignItems: 'center',
|
|
268
|
-
borderWidth: 1,
|
|
269
|
-
borderColor: '#E2E8F0',
|
|
270
|
-
zIndex: 10,
|
|
271
|
-
},
|
|
272
|
-
headerSection: {
|
|
273
|
-
alignItems: 'center',
|
|
274
|
-
width: '100%',
|
|
275
|
-
marginBottom: 4,
|
|
276
|
-
},
|
|
277
|
-
iconHaloRing: {
|
|
278
|
-
width: 66,
|
|
279
|
-
height: 66,
|
|
280
|
-
borderRadius: 20,
|
|
281
|
-
backgroundColor: '#FAF5FF',
|
|
282
|
-
justifyContent: 'center',
|
|
283
|
-
alignItems: 'center',
|
|
284
|
-
borderWidth: 1.5,
|
|
285
|
-
borderColor: '#F3E8FF',
|
|
286
|
-
marginBottom: 8,
|
|
287
|
-
shadowColor: '#7C3AED',
|
|
288
|
-
shadowOffset: {width: 0, height: 4},
|
|
289
|
-
shadowOpacity: 0.16,
|
|
290
|
-
shadowRadius: 10,
|
|
291
|
-
elevation: 4,
|
|
292
|
-
},
|
|
293
|
-
title: {
|
|
294
|
-
fontSize: 17,
|
|
295
|
-
fontWeight: '800',
|
|
296
|
-
color: '#0F172A',
|
|
297
|
-
letterSpacing: -0.4,
|
|
298
|
-
textAlign: 'center',
|
|
299
|
-
lineHeight: 22,
|
|
300
|
-
marginBottom: 2,
|
|
301
|
-
...fontStack,
|
|
302
|
-
},
|
|
303
|
-
subtitle: {
|
|
304
|
-
fontSize: 11.5,
|
|
305
|
-
fontWeight: '600',
|
|
306
|
-
color: '#7C3AED',
|
|
307
|
-
textAlign: 'center',
|
|
308
|
-
letterSpacing: 0.2,
|
|
309
|
-
marginBottom: 6,
|
|
310
|
-
...fontStack,
|
|
311
|
-
},
|
|
312
|
-
hintBadge: {
|
|
313
|
-
flexDirection: 'row',
|
|
314
|
-
alignItems: 'center',
|
|
315
|
-
justifyContent: 'center',
|
|
316
|
-
gap: 5,
|
|
317
|
-
backgroundColor: '#EDE9FE80',
|
|
318
|
-
borderWidth: 1,
|
|
319
|
-
borderColor: '#DDD6FE',
|
|
320
|
-
borderRadius: 7,
|
|
321
|
-
paddingHorizontal: 8,
|
|
322
|
-
paddingVertical: 3,
|
|
323
|
-
marginBottom: 8,
|
|
324
|
-
},
|
|
325
|
-
hintBadgeText: {
|
|
326
|
-
fontSize: 10,
|
|
327
|
-
fontWeight: '600',
|
|
328
|
-
color: '#6D28D9',
|
|
329
|
-
textAlign: 'center',
|
|
330
|
-
...fontStack,
|
|
331
|
-
},
|
|
332
|
-
description: {
|
|
333
|
-
fontSize: 12,
|
|
334
|
-
lineHeight: 17.5,
|
|
335
|
-
color: '#475569',
|
|
336
|
-
textAlign: 'center',
|
|
337
|
-
marginBottom: 12,
|
|
338
|
-
paddingHorizontal: 2,
|
|
339
|
-
...fontStack,
|
|
340
|
-
},
|
|
341
|
-
privacyBadge: {
|
|
342
|
-
flexDirection: 'row',
|
|
343
|
-
alignItems: 'flex-start',
|
|
344
|
-
backgroundColor: '#F8FAFC',
|
|
345
|
-
borderRadius: 12,
|
|
346
|
-
paddingVertical: 8,
|
|
347
|
-
paddingHorizontal: 10,
|
|
348
|
-
borderWidth: 1,
|
|
349
|
-
borderColor: '#E2E8F0',
|
|
350
|
-
marginBottom: 14,
|
|
351
|
-
width: '100%',
|
|
352
|
-
},
|
|
353
|
-
privacyShieldWrapper: {
|
|
354
|
-
marginRight: 7,
|
|
355
|
-
marginTop: 1,
|
|
356
|
-
},
|
|
357
|
-
privacyText: {
|
|
358
|
-
flex: 1,
|
|
359
|
-
fontSize: 10.8,
|
|
360
|
-
lineHeight: 15,
|
|
361
|
-
color: '#475569',
|
|
362
|
-
...fontStack,
|
|
363
|
-
},
|
|
364
|
-
privacyHighlight: {
|
|
365
|
-
fontWeight: '700',
|
|
366
|
-
color: '#1E293B',
|
|
367
|
-
},
|
|
368
|
-
buttonRow: {
|
|
369
|
-
flexDirection: 'row',
|
|
370
|
-
justifyContent: 'space-between',
|
|
371
|
-
alignItems: 'center',
|
|
372
|
-
gap: 10,
|
|
373
|
-
width: '100%',
|
|
374
|
-
},
|
|
375
|
-
declineButton: {
|
|
376
|
-
flex: 1,
|
|
377
|
-
flexDirection: 'row',
|
|
378
|
-
alignItems: 'center',
|
|
379
|
-
justifyContent: 'center',
|
|
380
|
-
gap: 5,
|
|
381
|
-
paddingVertical: 11,
|
|
382
|
-
borderRadius: 12,
|
|
383
|
-
backgroundColor: '#F1F5F9',
|
|
384
|
-
borderWidth: 1,
|
|
385
|
-
borderColor: '#E2E8F0',
|
|
386
|
-
},
|
|
387
|
-
declineText: {
|
|
388
|
-
fontSize: 13,
|
|
389
|
-
fontWeight: '600',
|
|
390
|
-
color: '#475569',
|
|
391
|
-
...fontStack,
|
|
392
|
-
},
|
|
393
|
-
allowButton: {
|
|
394
|
-
flex: 1,
|
|
395
|
-
flexDirection: 'row',
|
|
396
|
-
alignItems: 'center',
|
|
397
|
-
justifyContent: 'center',
|
|
398
|
-
gap: 5,
|
|
399
|
-
paddingVertical: 11,
|
|
400
|
-
borderRadius: 12,
|
|
401
|
-
backgroundColor: '#7C3AED',
|
|
402
|
-
shadowColor: '#7C3AED',
|
|
403
|
-
shadowOffset: {width: 0, height: 3},
|
|
404
|
-
shadowOpacity: 0.28,
|
|
405
|
-
shadowRadius: 6,
|
|
406
|
-
elevation: 4,
|
|
407
|
-
},
|
|
408
|
-
allowText: {
|
|
409
|
-
fontSize: 13,
|
|
410
|
-
fontWeight: '700',
|
|
411
|
-
color: '#FFFFFF',
|
|
412
|
-
...fontStack,
|
|
413
|
-
},
|
|
414
|
-
});
|
|
415
|
-
|
|
416
|
-
export default TelemetryConsentModal;
|