Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
TedxTed committed Dec 24, 2024
2 parents d87fa9c + 66de894 commit e0583c8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/components/common/AppRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ const defaultRoutesMap: RoutesMap = {
path: '/oauth2/:provider',
pageName: 'OAuth2Page',
},

over_bind_device: {
path: '/over-bind-device',
pageName: 'OverBindDevicePage',
},

join: {
path: '/join',
pageName: 'JoinPage',
Expand Down
19 changes: 19 additions & 0 deletions src/pages/OverBindDevicePage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import OverBindDeviceModal from '../components/auth/login/OverBindDeviceModal'
import DefaultLayout from '../components/layout/DefaultLayout'

const OverBindDevicePage: React.VFC = () => {
return (
<>
<DefaultLayout>
<OverBindDeviceModal
visible={true}
onClose={() => {
window.location.href = '/'
}}
/>
</DefaultLayout>
</>
)
}

export default OverBindDevicePage
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11302,7 +11302,7 @@ lodash.uniq@^4.5.0:

lodestar-app-element@urfit-tech/lodestar-app-element#master:
version "0.1.0"
resolved "https://codeload.github.com/urfit-tech/lodestar-app-element/tar.gz/bf872a15d53d5bbd27bf2eb6c824885c3f9a9bd3"
resolved "https://codeload.github.com/urfit-tech/lodestar-app-element/tar.gz/e8beab126e69cb55bf173afd6f775d5ef4606230"
dependencies:
"@apollo/client" "^3.7.11"
"@babel/cli" "^7.13.16"
Expand Down

0 comments on commit e0583c8

Please sign in to comment.