* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
25 lines
865 B
TypeScript
25 lines
865 B
TypeScript
// components
|
|
import { Outlet } from "react-router";
|
|
// wrappers
|
|
import { ProjectsAppPowerKProvider } from "@/components/power-k/projects-app-provider";
|
|
import { AuthenticationWrapper } from "@/lib/wrappers/authentication-wrapper";
|
|
// layout
|
|
import { ProfileLayoutSidebar } from "./sidebar";
|
|
|
|
export default function ProfileSettingsLayout() {
|
|
return (
|
|
<>
|
|
<ProjectsAppPowerKProvider />
|
|
<AuthenticationWrapper>
|
|
<div className="relative flex h-full w-full overflow-hidden rounded-lg border border-custom-border-200">
|
|
<ProfileLayoutSidebar />
|
|
<main className="relative flex h-full w-full flex-col overflow-hidden bg-custom-background-100">
|
|
<div className="h-full w-full overflow-hidden">
|
|
<Outlet />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</AuthenticationWrapper>
|
|
</>
|
|
);
|
|
}
|