aboutsummaryrefslogtreecommitdiffstats
path: root/app/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.js')
-rw-r--r--app/app.js12
1 files changed, 1 insertions, 11 deletions
diff --git a/app/app.js b/app/app.js
index 6f33417..1dc7602 100644
--- a/app/app.js
+++ b/app/app.js
@@ -26,7 +26,7 @@ import './global-styles';
// Observe loading of Overpass (to remove Overpass, remove the <link> tag in
// the index.html file and this observer)
-const overpassObserver = new FontFaceObserver('Overpass', {});
+const overpassObserver = new FontFaceObserver('Overpass Mono', {});
// When Overpass is loaded, add a font-family using Overpass to the body
overpassObserver.load().then(() => {
@@ -43,14 +43,4 @@ const render = () => {
);
};
-if (module.hot) {
- // Hot reloadable React components and translation json files
- // modules.hot.accept does not accept dynamic dependencies,
- // have to be constants at compile-time
- module.hot.accept(['containers/App'], () => {
- ReactDOM.unmountComponentAtNode(MOUNT_NODE);
- render();
- });
-}
-
render();