diff --git a/src/pages/agent-office/constants.js b/src/pages/agent-office/constants.js index 60d0b9c..152f39a 100644 --- a/src/pages/agent-office/constants.js +++ b/src/pages/agent-office/constants.js @@ -14,8 +14,6 @@ export const AGENT_META = { lotto: { displayName: '로또 큐레이터', color: '#ef4444', image: lottoImg }, }; -export const ACTIVE_AGENT_IDS = ['stock', 'music', 'insta', 'realestate', 'lotto']; - // 3x3 슬롯 (좌→우, 위→아래). 처음 5칸은 active, 나머지 4칸은 placeholder. export const GRID_SLOTS = [ { agentId: 'stock' }, @@ -29,6 +27,8 @@ export const GRID_SLOTS = [ { agentId: null }, ]; +export const ACTIVE_AGENT_IDS = GRID_SLOTS.filter(s => s.agentId !== null).map(s => s.agentId); + export const PLACEHOLDER_IMAGE = undeterminedImg; export const PLACEHOLDER_LABEL = '준비 중';