Skip to content

Commit e70b148

Browse files
committed
update google maps URLs containing API key
1 parent a076617 commit e70b148

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ui/components/map/__tests__/__snapshots__/index.spec.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ exports[`Map Container renders map container 1`] = `
1212
>
1313
<iframe
1414
id="GoogleMapID"
15-
src="https://www.google.com/maps/embed/v1/place?q=1%20market%2C%20san%20francisco&key=AIzaSyDliLquGXGts9S8YtkWVolSQEJdBL1ZuWc"
15+
src="https://sfdc-map.surge.sh/"
1616
title="Google Maps iframe"
1717
/>
1818
</div>
@@ -32,7 +32,7 @@ exports[`Map Container renders map container with coordinates 1`] = `
3232
>
3333
<iframe
3434
id="GoogleMapID"
35-
src="https://www.google.com/maps/embed/v1/place?q=1%20market%2C%20san%20francisco&key=AIzaSyDliLquGXGts9S8YtkWVolSQEJdBL1ZuWc"
35+
src="https://sfdc-map.surge.sh/"
3636
title="Google Maps iframe"
3737
/>
3838
</div>
@@ -490,7 +490,7 @@ exports[`Map Container renders map container with heading text 1`] = `
490490
>
491491
<iframe
492492
id="GoogleMapID"
493-
src="https://www.google.com/maps/embed/v1/place?q=1%20market%2C%20san%20francisco&key=AIzaSyDliLquGXGts9S8YtkWVolSQEJdBL1ZuWc"
493+
src="https://sfdc-map.surge.sh/"
494494
title="Google Maps iframe"
495495
/>
496496
</div>
@@ -510,7 +510,7 @@ exports[`Map Container renders map container with selected coordinate 1`] = `
510510
>
511511
<iframe
512512
id="GoogleMapID"
513-
src="https://www.google.com/maps/embed/v1/place?q=1%20market%2C%20san%20francisco&key=AIzaSyDliLquGXGts9S8YtkWVolSQEJdBL1ZuWc"
513+
src="https://sfdc-map.surge.sh/"
514514
title="Google Maps iframe"
515515
/>
516516
</div>

ui/components/map/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export const GoogleMap = props => {
8989
<iframe
9090
id="GoogleMapID"
9191
title="Google Maps iframe"
92-
src="https://www.google.com/maps/embed/v1/place?q=1%20market%2C%20san%20francisco&key=AIzaSyDliLquGXGts9S8YtkWVolSQEJdBL1ZuWc"
92+
src="https://sfdc-map.surge.sh/"
9393
/>
9494
)}
9595
</div>

0 commit comments

Comments
 (0)