diff --git a/components/Map/index.js b/components/Map/index.js
index 766fcb04b..6a129eb89 100644
--- a/components/Map/index.js
+++ b/components/Map/index.js
@@ -444,14 +444,18 @@ class MapContainer extends React.Component {
initialState={this.initialState}
/>
- {(isDbLoading || isMapLoading || isTableLoading) ? (
- <>
-
-
- >
- ) : (acknowledgeModalShown === false) ? (
-
- ) : null}
+ {
+ window.location.hash == '#/map' && (
+ (isDbLoading || isMapLoading || isTableLoading) ? (
+ <>
+
+
+ >
+ ) : (acknowledgeModalShown === false) ? (
+
+ ) : null
+ )
+ }
);
}