added delete agent function

This commit is contained in:
Joshua Collins 2020-08-20 11:55:21 -04:00
parent 955429f4ab
commit 8f0cb0b7b6

View File

@ -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