Skip to content

Commit

Permalink
Update delete service confirmation message
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Mar 4, 2024
1 parent 018b4c6 commit 6fc3eb0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/components/YourAgents/ServiceCard/ServiceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,13 @@ export const ServiceCard = ({ service }: ServiceCardProps) => {
delete: (
<Popconfirm
title="Delete service"
description="Are you sure you want to delete this service?"
description={
<>
Are you sure you want to delete this service?
<br />
Your agent&apos;s private keys will be lost.
</>
}
placement="leftBottom"
onConfirm={handleDelete}
>
Expand Down

0 comments on commit 6fc3eb0

Please sign in to comment.