diff --git a/app/store/agents.js b/app/store/agents.js index 4d3e967..37a5053 100644 --- a/app/store/agents.js +++ b/app/store/agents.js @@ -44,7 +44,7 @@ const Agents = () => { obj.deleteAgentById = (agentId) => { const index = obj.agents.findIndex(agent => agent.id === agentId) if (index !== -1) { - obj.splice(index, 1) + obj.agents.splice(index, 1) return true } else { return false