fix(study): Svelte fragment 문법 제거 — <></> 대신 명시적 태그

This commit is contained in:
Hyungi Ahn
2026-04-28 13:43:31 +09:00
parent 8b15e6e019
commit b58268ba96
@@ -310,7 +310,12 @@
<span class="text-[11px] text-dim">{images.length}</span>
</div>
<label class="cursor-pointer text-xs text-accent hover:underline flex items-center gap-1">
{#if imgUploading}<span>업로드 중...</span>{:else}<><ImagePlus size={14} /> 이미지 추가</>{/if}
{#if imgUploading}
<span>업로드 중...</span>
{:else}
<ImagePlus size={14} />
<span>이미지 추가</span>
{/if}
<input type="file" accept="image/png,image/jpeg,image/webp,image/gif" multiple
onchange={uploadImages} disabled={imgUploading} class="hidden" />
</label>