diff --git a/CHANGELOG.md b/CHANGELOG.md
index 807b2191..611001a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,10 @@ way to update this template, but currently, we follow a pattern:
* Patch (v0.0.**X**): Bug fixes and small changes to components.
---
+## v1.3.1
+* [fix] Hotfix: reverting the usage of ReusableMapContainer due to
+ production build error.
+ [#881](https://github.com/sharetribe/flex-template-web/pull/881)
## v1.3.0
* [change] Reusable SearchMap.
diff --git a/package.json b/package.json
index c17266df..d6dcbdfd 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "app",
- "version": "1.3.0",
+ "version": "1.3.1",
"private": true,
"license": "Apache-2.0",
"dependencies": {
diff --git a/src/components/SearchMap/SearchMap.js b/src/components/SearchMap/SearchMap.js
index 263959d7..ec2be0e4 100644
--- a/src/components/SearchMap/SearchMap.js
+++ b/src/components/SearchMap/SearchMap.js
@@ -12,7 +12,6 @@ import { googleBoundsToSDKBounds } from '../../util/googleMaps';
import { SearchMapInfoCard, SearchMapPriceLabel, SearchMapGroupLabel } from '../../components';
import config from '../../config';
-import ReusableMapContainer from './ReusableMapContainer';
import css from './SearchMap.css';
const LABEL_HANDLE = 'SearchMapLabel';
@@ -241,7 +240,6 @@ export class SearchMapComponent extends Component {
const {
className,
rootClassName,
- reuseableContainerClassName,
center,
isOpenOnModal,
listings: originalListings,
@@ -265,30 +263,28 @@ export class SearchMapComponent extends Component {
// container element listens clicks so that opened SearchMapInfoCard can be closed
/* eslint-disable jsx-a11y/no-static-element-interactions */
return isMapsLibLoaded ? (
-