diff --git a/app/pages/project/vpcs/VpcsPage.tsx b/app/pages/project/vpcs/VpcsPage.tsx index c03dfeb6b6..2cc0ecf014 100644 --- a/app/pages/project/vpcs/VpcsPage.tsx +++ b/app/pages/project/vpcs/VpcsPage.tsx @@ -22,6 +22,7 @@ import { Networking16Icon, Networking24Icon } from '@oxide/design-system/icons/r import { DocsPopover } from '~/components/DocsPopover' import { getProjectSelector, useProjectSelector, useQuickActions } from '~/hooks' import { confirmDelete } from '~/stores/confirm-delete' +import { addToast } from '~/stores/toast' import { SkeletonCell } from '~/table/cells/EmptyCell' import { LinkCell, makeLinkCell } from '~/table/cells/LinkCell' import { getActionsCol, type MenuAction } from '~/table/columns/action-col' @@ -83,6 +84,7 @@ export function VpcsPage() { const { mutateAsync: deleteVpc } = useApiMutation('vpcDelete', { onSuccess() { queryClient.invalidateQueries('vpcList') + addToast({ content: 'Your VPC has been deleted' }) }, })