동시에 업로드할 수 있는 파일의 메모리 용량을 제한하여 메모리 부족으로 인해 발생하던 크래시 해결

This commit is contained in:
static
2026-01-02 23:00:25 +09:00
parent 008c8ad6ba
commit 83d595636b
10 changed files with 213 additions and 200 deletions

View File

@@ -18,7 +18,7 @@
<div class="flex h-14 items-center gap-x-4 p-2">
<div class="flex-shrink-0 text-lg text-gray-600">
{#if state.status === "encryption-pending"}
{#if state.status === "queued" || state.status === "encryption-pending"}
<IconPending />
{:else if state.status === "encrypting"}
<IconLockClock />
@@ -37,7 +37,9 @@
{state.name}
</p>
<p class="text-xs text-gray-800">
{#if state.status === "encryption-pending"}
{#if state.status === "queued"}
대기 중
{:else if state.status === "encryption-pending"}
준비 중
{:else if state.status === "encrypting"}
암호화하는 중