refactor: onboarding workflow (#1286)

* chore: onboarding steps workflow verification

* chore: onboarding variable update
This commit is contained in:
guru_sainath 2023-06-14 13:17:35 +05:30 committed by GitHub
parent 4b25b7244b
commit 6f7b563712
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 96 additions and 98 deletions

View file

@ -7,7 +7,7 @@ import { ICurrentUserResponse, IUser } from "types";
import { MultiInput, PrimaryButton, SecondaryButton } from "components/ui";
type Props = {
setStep: React.Dispatch<React.SetStateAction<number>>;
setStep: React.Dispatch<React.SetStateAction<number | null>>;
workspace: any;
user: ICurrentUserResponse | undefined;
};