Skip to content

Commit

Permalink
fix: agent view modal
Browse files Browse the repository at this point in the history
  • Loading branch information
okradze committed Nov 29, 2023
1 parent 0c5a125 commit b3118dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ui/src/modals/AgentViewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const AgentViewModal = ({ data }: AgentViewModalProps) => {

const { id, agent } = data

const { data: agentObj } = useAgentByIdService({ id: agent.agent.id })
const { data: agentObj } = useAgentByIdService({ id })

const { data: agentById } = useDiscoverAgentByIdService({ id: id })
const { data: agentById } = useDiscoverAgentByIdService({ id })

return (
<>
Expand Down

0 comments on commit b3118dd

Please sign in to comment.