fix: app dir build errors. (#4746)

This commit is contained in:
Prateek Shourya 2024-06-10 15:02:44 +05:30 committed by GitHub
parent f93803ace8
commit c880e8b48c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 5 additions and 760 deletions

View file

@ -1,3 +1,5 @@
"use client";
import { observer } from "mobx-react";
// components
import { PageHead } from "@/components/core";

View file

@ -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",

View file

@ -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,