오타 수정

This commit is contained in:
static
2025-01-06 14:12:23 +09:00
parent 6bf40e4ab4
commit bd0dd3343a
12 changed files with 43 additions and 43 deletions

View File

@@ -1,11 +1,11 @@
<script lang="ts">
import { Modal } from "$lib/components";
import { Button } from "$lib/components/buttons";
import type { SelectedDiretoryEntry } from "./+page.svelte";
import type { SelectedDirectoryEntry } from "./+page.svelte";
interface Props {
isOpen: boolean;
selectedEntry: SelectedDiretoryEntry | undefined;
selectedEntry: SelectedDirectoryEntry | undefined;
}
let { isOpen = $bindable(), selectedEntry = $bindable() }: Props = $props();