From 446ff8f0ff1b59bae35c8221dfdc9fd24e0c0e67 Mon Sep 17 00:00:00 2001 From: PortalCube <35104213+PortalCube@users.noreply.github.com> Date: Mon, 6 Nov 2023 14:35:58 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20type.js=20=EB=AC=B8=EB=B2=95=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/librarys/type.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librarys/type.js b/src/librarys/type.js index 1e2da83..5ab170f 100644 --- a/src/librarys/type.js +++ b/src/librarys/type.js @@ -12,13 +12,13 @@ export const CATEGORY_TYPE = { THIGH: "허벅지", }; -export const ROLE_LIST = Object.entries(ROLE_TYPE).map((key, value) => ({ +export const ROLE_LIST = Object.entries(ROLE_TYPE).map((key, value) => [ key, value, -})); +]); export const CATEGORY_LIST = Object.entries(CATEGORY_TYPE).map( - (key, value) => ({ + ([key, value]) => ({ key, value, }),