diff --git a/components/settings/OrganizationSettings.tsx b/components/settings/OrganizationSettings.tsx
index 861a67b..7164987 100644
--- a/components/settings/OrganizationSettings.tsx
+++ b/components/settings/OrganizationSettings.tsx
@@ -1345,10 +1345,35 @@ export default function OrganizationSettings() {
-
- This action cannot be undone. This will permanently delete the organization, all stored files, and remove all members.
+
+ This action cannot be undone. The following will be permanently deleted:
+
+ {typeof subscription?.sites_count === 'number' && subscription.sites_count > 0 && (
+ -
+
+ {subscription.sites_count} {subscription.sites_count === 1 ? 'site' : 'sites'} and all analytics data
+
+ )}
+ {members.length > 1 && (
+ -
+
+ {members.length - 1} {members.length - 1 === 1 ? 'member' : 'members'} will be removed
+
+ )}
+ {subscription?.subscription_status === 'active' && subscription?.plan_id !== 'free' && (
+ -
+
+ Active subscription will be cancelled
+
+ )}
+ -
+
+ All notifications and settings
+
+
+