We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3bea8ae + ef69732 commit 19c40c3Copy full SHA for 19c40c3
gui/src/renderer/components/Map.tsx
@@ -33,6 +33,10 @@ export default function Map() {
33
return hasLocationValue ? connection : defaultLocation;
34
}, [hasLocationValue, connection.latitude, connection.longitude]);
35
36
+ if (window.env.e2e) {
37
+ return null;
38
+ }
39
+
40
const connectionState = getConnectionState(hasLocationValue, connection.status.state);
41
42
const reduceMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
0 commit comments