From ee2888b7a881f9012f990d5738358f8aec698a7c Mon Sep 17 00:00:00 2001 From: basssy Date: Mon, 25 Nov 2024 10:26:20 +0900 Subject: [PATCH] =?UTF-8?q?floorPlanObjectState=20=EC=97=90=20=ED=82=A4=20?= =?UTF-8?q?uuid=20=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/floorPlanObjectAtom.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/store/floorPlanObjectAtom.js b/src/store/floorPlanObjectAtom.js index d514fe54..37227b0a 100644 --- a/src/store/floorPlanObjectAtom.js +++ b/src/store/floorPlanObjectAtom.js @@ -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, })