Skip to content

Commit

Permalink
Fix: type.js 문법 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
PortalCube committed Nov 6, 2023
1 parent a266954 commit 446ff8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librarys/type.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}),
Expand Down

0 comments on commit 446ff8f

Please sign in to comment.