diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 1885c2009..7751cb613 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -26,7 +26,7 @@ jobs: - name: build env: - HOST: 'https://rollingscopes.com' + HOST: 'https://rs.school' run: | npm install npm run build diff --git a/src/app/app.tsx b/src/app/app.tsx index d3b3aa1af..61d77505f 100644 --- a/src/app/app.tsx +++ b/src/app/app.tsx @@ -7,11 +7,6 @@ import './app.scss'; const router = createBrowserRouter(routes); function App() { - // If we are on https://rollingscopes.com/, a redirect to https://rs.school/ is triggered. - if (window.location.hostname.includes('rollingscopes.com')) { - window.location.href = 'https://rs.school'; - } - return (