From e56f5763f288181565ccd096880fd717c9f4e32d Mon Sep 17 00:00:00 2001 From: Tudor Morar Date: Fri, 9 Feb 2024 18:06:24 +0200 Subject: [PATCH] Force deploy --- .github/workflows/deploy-next.yml | 6 ++++-- src/pages/Unlock/Unlock.tsx | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-next.yml b/.github/workflows/deploy-next.yml index 5a6b0b3b..cb7c381c 100644 --- a/.github/workflows/deploy-next.yml +++ b/.github/workflows/deploy-next.yml @@ -1,6 +1,8 @@ name: deploy-next on: + push: + branches: [cross-window-hub] repository_dispatch: types: deploy-next workflow_dispatch: @@ -11,11 +13,11 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: main + ref: cross-window-hub - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: '16.x' + node-version: '18.x' - name: Setup yarn run: npm install -g yarn - run: yarn install diff --git a/src/pages/Unlock/Unlock.tsx b/src/pages/Unlock/Unlock.tsx index 7574c9db..4c3ee7b9 100644 --- a/src/pages/Unlock/Unlock.tsx +++ b/src/pages/Unlock/Unlock.tsx @@ -30,7 +30,7 @@ export const Unlock = () => { const navigate = useNavigate(); const commonProps: CommonPropsType = { callbackRoute: RouteNamesEnum.dashboard, - // nativeAuth, + nativeAuth, onLoginRedirect: () => { navigate(RouteNamesEnum.dashboard); }