[SI-2524] - correct map handling
diff --git a/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.spec.ts b/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.spec.ts
index 9e94396..38aeb92 100644
--- a/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.spec.ts
+++ b/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.spec.ts
@@ -358,7 +358,7 @@
 
     service.latLonMapping(event);
 
-    expect(dispatchSpy).not.toHaveBeenCalled();
+    expect(dispatchSpy).toHaveBeenCalled();
   });
 
   it('should dispatch loadAddressPostalcodes Action via loadAddressPostalcodes()', () => {
diff --git a/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.ts b/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.ts
index 0782d22..6166e86 100644
--- a/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.ts
+++ b/projects/grid-failure-information-app/src/app/pages/grid-failure/grid-failure-details/grid-failure-details.sandbox.ts
@@ -518,7 +518,7 @@
     const isSelectedMapLocationDifferentToOldMapLocation =
     (!this.currentFormState.value.latitude || data.latitude !== this.currentFormState.value.latitude ||
      !this.currentFormState.value.longitude || data.longitude !== this.currentFormState.value.longitude);
-    if (!!data && this.currentFormState.value.voltageLevel === Globals.FAILURE_LOCATION_MS && isSelectedMapLocationDifferentToOldMapLocation) {
+    if (!!data && isSelectedMapLocationDifferentToOldMapLocation) {
       this.appState$.dispatch(
         new SetValueAction(this.currentFormState.id, {
           ...this.currentFormState.value,