fix: app dir build errors. (#4746)
This commit is contained in:
parent
f93803ace8
commit
c880e8b48c
8 changed files with 5 additions and 760 deletions
|
|
@ -1,3 +1,5 @@
|
|||
"use client";
|
||||
|
||||
import { observer } from "mobx-react";
|
||||
// components
|
||||
import { PageHead } from "@/components/core";
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import { AuthenticationWrapper } from "@/lib/wrappers";
|
|||
// services
|
||||
import { WorkspaceService } from "@/services/workspace.service";
|
||||
|
||||
export enum EOnboardingSteps {
|
||||
enum EOnboardingSteps {
|
||||
PROFILE_SETUP = "PROFILE_SETUP",
|
||||
WORKSPACE_CREATE_OR_JOIN = "WORKSPACE_CREATE_OR_JOIN",
|
||||
INVITE_MEMBERS = "INVITE_MEMBERS",
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ const defaultValues: FormValues = {
|
|||
confirm_password: "",
|
||||
};
|
||||
|
||||
export const userService = new UserService();
|
||||
export const authService = new AuthService();
|
||||
const userService = new UserService();
|
||||
const authService = new AuthService();
|
||||
|
||||
const defaultShowPassword = {
|
||||
oldPassword: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue