Skip to content

Commit 97660b6

Browse files
improved impact message
1 parent 2007926 commit 97660b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/[orgId]/settings/resources/[resourceId]/general/GeneralForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ export default function GeneralForm({ fetchedOrgs }: GeneralFormProps) {
453453
warnings.push({
454454
type: 'warning',
455455
icon: <Unplug className="w-4 h-4" />,
456-
message: `${impact.targetSites.count} target connection${impact.targetSites.count > 1 ? 's' : ''} will be Moved to ${moveImpact?.targetOrgName || selectedOrgName}`
456+
message: `${impact.targetSites.count} target connection${impact.targetSites.count > 1 ? 's' : ''} will lose its associated site.`
457457
});
458458
}
459459

@@ -798,7 +798,7 @@ export default function GeneralForm({ fetchedOrgs }: GeneralFormProps) {
798798
{moveImpact.impact.targetSites.count > 0 && (
799799
<div>
800800
<p className="text-sm font-medium text-yellow-900 mb-1">
801-
Target connections will be Moved ({moveImpact.impact.targetSites.count}):
801+
Target connections will lose its associated site ({moveImpact.impact.targetSites.count}):
802802
</p>
803803
<ul className="text-sm text-yellow-700 ml-4 space-y-1">
804804
{moveImpact.impact.targetSites.details.map((target, idx) => (

0 commit comments

Comments
 (0)