We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 208468d commit 4cf0129Copy full SHA for 4cf0129
src/pages/SettingPage.tsx
@@ -1,4 +1,4 @@
1
-import React from 'react';
+import React, { useEffect } from 'react';
2
import styled from 'styled-components';
3
import PageTemplate from '../components/base/PageTemplate';
4
import SettingUserProfileContainer from '../containers/setting/SettingUserProfileContainer';
@@ -9,6 +9,9 @@ import { Helmet } from 'react-helmet-async';
9
export type SettingPageProps = {};
10
11
function SettingPage(props: SettingPageProps) {
12
+ useEffect(() => {
13
+ window.location.href = `${process.env.REACT_APP_CLIENT_V3_HOST!}/setting`;
14
+ }, []);
15
return (
16
<SettingTemplate>
17
<Helmet>
0 commit comments