floorPlanObjectState 에 키 uuid 제거

This commit is contained in:
basssy 2024-11-25 10:26:20 +09:00
parent e581d2fee8
commit ee2888b7a8

View File

@ -1,7 +1,6 @@
import { atom } from 'recoil'
import { v1 } from 'uuid'
export const floorPlanObjectState = atom({
key: `floorPlanObjectState/${v1()}`,
key: 'floorPlanObjectState',
default: {
floorPlanObjectNo: '', //물건번호
},
@ -9,7 +8,7 @@ export const floorPlanObjectState = atom({
})
export const estimateState = atom({
key: `estimateState`,
key: 'estimateState',
default: {},
dangerouslyAllowMutability: true,
})