File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/web/app/(org)/dashboard/folder/[id] Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1+ import { getCurrentUser } from "@cap/database/auth/session" ;
12import { serverEnv } from "@cap/env" ;
23import { CurrentUser , type Folder } from "@cap/web-domain" ;
4+ import { Effect } from "effect" ;
5+ import { notFound } from "next/navigation" ;
36import {
47 getChildFolders ,
58 getFolderBreadcrumb ,
69 getVideosByFolderId ,
710} from "@/lib/folder" ;
11+ import { runPromise } from "@/lib/server" ;
812import { UploadCapButton } from "../../caps/components" ;
913import FolderCard from "../../caps/components/Folder" ;
1014import {
@@ -13,10 +17,6 @@ import {
1317 NewSubfolderButton ,
1418} from "./components" ;
1519import FolderVideosSection from "./components/FolderVideosSection" ;
16- import { Effect } from "effect" ;
17- import { runPromise } from "@/lib/server" ;
18- import { getCurrentUser } from "@cap/database/auth/session" ;
19- import { notFound } from "next/navigation" ;
2020
2121const FolderPage = async ( { params } : { params : { id : Folder . FolderId } } ) => {
2222 const user = await getCurrentUser ( ) ;
You can’t perform that action at this time.
0 commit comments