From 7fee6135c20df4f665b2d6003006a0b22f4395e2 Mon Sep 17 00:00:00 2001 From: Jeong Daseul <98886223+goodaseul@users.noreply.github.com> Date: Thu, 29 Jan 2026 14:27:32 +0900 Subject: [PATCH] =?UTF-8?q?refacotr:=20=EC=82=AC=EC=9A=A9=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8A=94=20uploadWords=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/words.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/words.ts b/src/api/words.ts index 17dcceb..a60d8b7 100644 --- a/src/api/words.ts +++ b/src/api/words.ts @@ -102,7 +102,7 @@ export async function uploadWords(word: WordCreateInput) { throw new Error("Unauthorized"); } - const { memo, ...uploadData } = word; + const { memo } = word; const normalizedMemo = memo !== undefined && memo.trim() === "" ? null : memo;