diff --git a/.circleci/config.yml b/.circleci/config.yml
index c49a288539..23019f1e68 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -174,8 +174,7 @@ workflows:
filters:
branches:
only:
- - develop
- - notifications-analytics
+ - hot-fix-hall-of-fame
# This is alternate dev env for parallel testing
- "build-test":
context : org-global
@@ -189,8 +188,8 @@ workflows:
filters:
branches:
only:
+ - hot-fix-hall-of-fame
- develop
- - notifications-analytics
# Production builds are exectuted
# when PR is merged to the master
# Don't change anything in this configuration
diff --git a/src/shared/routes/HallOfFame.jsx b/src/shared/routes/HallOfFame.jsx
index 54e04ae9e6..9b574976e4 100644
--- a/src/shared/routes/HallOfFame.jsx
+++ b/src/shared/routes/HallOfFame.jsx
@@ -1,11 +1,10 @@
/**
* The loader/router for TCO Hall of Fame
*/
-import path from 'path';
import React from 'react';
import LoadingPagePlaceholder from 'components/LoadingPagePlaceholder';
-import { AppChunk, webpack } from 'topcoder-react-utils';
+import { AppChunk } from 'topcoder-react-utils';
export default function HallOfFameRouter(props) {
return (
@@ -17,11 +16,6 @@ export default function HallOfFameRouter(props) {
))
}
renderPlaceholder={() => }
- renderServer={() => {
- const p = webpack.resolveWeak('components/HallOfFamePage');
- const HallOfFameContainer = webpack.requireWeak(path.resolve(__dirname, p));
- return ;
- }}
/>
);
}