Skip to content

Commit

Permalink
fix: deliver status button
Browse files Browse the repository at this point in the history
  • Loading branch information
debendraoli committed Dec 5, 2024
1 parent 9f2fb78 commit 7464248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Page/Dashboard/MessageTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ const MessageTable: FC<MessageTableProps> = ({ messages }) => {
{dict.dashboard.xcall.actions.deliver}
</DropdownItem>
)}
{message.status === 'delivered' && !message.response_tx_hash && (
{message.status === 'delivered' && (
<DropdownItem onClick={() => handleShowModal(message)}>
{dict.dashboard.xcall.actions.execute}
</DropdownItem>
Expand Down

0 comments on commit 7464248

Please sign in to comment.