파일 업로드가 완료된 후에 파일/디렉터리 목록이 갱신되지 않던 버그 수정 및 구현되지 않은 탭 임시 레이아웃 구현

This commit is contained in:
static
2025-01-07 01:25:14 +09:00
parent 7a1bf80a12
commit 661e7a33de
12 changed files with 61 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
import type { PageLoad } from "./$types";
export const load: PageLoad = async ({ url }) => {
const redirectPath = url.searchParams.get("redirect") || "/";
const redirectPath = url.searchParams.get("redirect") || "/home";
return { redirectPath };
};