Skip to content

Commit

Permalink
fix: 액세서리 상태 단일 선택으로 변경 #25
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Feb 10, 2024
1 parent dbfaea5 commit 9538836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/context/accessory.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { atom } from 'recoil';

export const selectedAccessoryState = atom<number[]>({
export const selectedAccessoryState = atom<number>({
key: 'selectedAccessoryState',
default: [],
default: 0,
});

0 comments on commit 9538836

Please sign in to comment.