사소한 리팩토링

This commit is contained in:
static
2025-12-27 14:10:33 +09:00
parent 576d41da7f
commit 0d13d3baef
7 changed files with 6 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import { error } from "@sveltejs/kit";
import { keyExportState } from "$lib/utils/gotoStateful";
import { keyExportState } from "$lib/utils";
import type { PageLoad } from "./$types";
export const load: PageLoad = async () => {

View File

@@ -1,8 +1,7 @@
<script lang="ts">
import type { Writable } from "svelte/store";
import { goto } from "$app/navigation";
import { EntryButton } from "$lib/components/atoms";
import { FileThumbnailButton } from "$lib/components/molecules";
import { EntryButton, FileThumbnailButton } from "$lib/components/atoms";
import { getFileInfo, type FileInfo } from "$lib/modules/filesystem";
import { masterKeyStore } from "$lib/stores";
import { requestFreshMediaFilesRetrieval } from "./service";