Fixed the bug with redirect during signup invite

This commit is contained in:
Vladyslav Matsiiako
2023-01-18 13:21:30 -08:00
parent b7115d8862
commit 6567c3bddf
3 changed files with 2 additions and 33 deletions

View File

@@ -45,7 +45,6 @@
"react-beautiful-dnd": "^13.1.1",
"react-code-input": "^3.10.1",
"react-dom": "^17.0.2",
"react-github-btn": "^1.4.0",
"react-grid-layout": "^1.3.4",
"react-i18next": "^12.1.1",
"react-mailchimp-subscribe": "^2.1.3",
@@ -12768,11 +12767,6 @@
"giget": "dist/cli.mjs"
}
},
"node_modules/github-buttons": {
"version": "2.22.0",
"resolved": "https://registry.npmjs.org/github-buttons/-/github-buttons-2.22.0.tgz",
"integrity": "sha512-N5bk01s1WgK1FVtoeSUVkRkJpkaSu8yHMPcjye+PTa0jsRjMRNrYqVLgpUf2RA5Kvec05DfHYAT6/68fwkdqPw=="
},
"node_modules/github-from-package": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
@@ -17888,17 +17882,6 @@
"integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==",
"dev": true
},
"node_modules/react-github-btn": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/react-github-btn/-/react-github-btn-1.4.0.tgz",
"integrity": "sha512-lV4FYClAfjWnBfv0iNlJUGhamDgIq6TayD0kPZED6VzHWdpcHmPfsYOZ/CFwLfPv4Zp+F4m8QKTj0oy2HjiGXg==",
"dependencies": {
"github-buttons": "^2.22.0"
},
"peerDependencies": {
"react": ">=16.3.0"
}
},
"node_modules/react-grid-layout": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/react-grid-layout/-/react-grid-layout-1.3.4.tgz",
@@ -31479,11 +31462,6 @@
"tar": "^6.1.12"
}
},
"github-buttons": {
"version": "2.22.0",
"resolved": "https://registry.npmjs.org/github-buttons/-/github-buttons-2.22.0.tgz",
"integrity": "sha512-N5bk01s1WgK1FVtoeSUVkRkJpkaSu8yHMPcjye+PTa0jsRjMRNrYqVLgpUf2RA5Kvec05DfHYAT6/68fwkdqPw=="
},
"github-from-package": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
@@ -35150,14 +35128,6 @@
}
}
},
"react-github-btn": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/react-github-btn/-/react-github-btn-1.4.0.tgz",
"integrity": "sha512-lV4FYClAfjWnBfv0iNlJUGhamDgIq6TayD0kPZED6VzHWdpcHmPfsYOZ/CFwLfPv4Zp+F4m8QKTj0oy2HjiGXg==",
"requires": {
"github-buttons": "^2.22.0"
}
},
"react-grid-layout": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/react-grid-layout/-/react-grid-layout-1.3.4.tgz",

View File

@@ -52,7 +52,6 @@
"react-beautiful-dnd": "^13.1.1",
"react-code-input": "^3.10.1",
"react-dom": "^17.0.2",
"react-github-btn": "^1.4.0",
"react-grid-layout": "^1.3.4",
"react-i18next": "^12.1.1",
"react-mailchimp-subscribe": "^2.1.3",

View File

@@ -5,13 +5,13 @@ import { useRouter } from 'next/router';
import Button from '@app/components/basic/buttons/Button';
import { getTranslatedServerSideProps } from '@app/components/utilities/withTranslateProps';
import getWorkspaces from './api/workspace/getWorkspaces';
import getOrganizationUserProjects from './api/organization/GetOrgUserProjects';
export default function NoProjects() {
const router = useRouter();
const redirectUser = async () => {
const workspaces = await getWorkspaces();
const workspaces = await getOrganizationUserProjects({ orgId: String(localStorage.getItem("orgData.id")) });
if (workspaces.length > 0) {
router.push(`/dashboard/${workspaces[0]._id}`);
}