Skip to content

Commit 1ccf309

Browse files
fix: Correct misleading text in update confirmation modal
- Change "will re-run the script installation process" to "will update the script" - More accurate description of what the update operation actually does - Maintains warning about potential container impact and backup recommendation - Better user understanding of the actual operation being performed
1 parent a30cce3 commit 1ccf309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/_components/InstalledScriptsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ export function InstalledScriptsTab() {
496496
setConfirmationModal({
497497
isOpen: true,
498498
title: 'Confirm Script Update',
499-
message: `Are you sure you want to update "${script.script_name}"?\n\n⚠️ WARNING: This will re-run the script installation process and may overwrite existing data. Consider backing up your data beforehand.`,
499+
message: `Are you sure you want to update "${script.script_name}"?\n\n⚠️ WARNING: This will update the script and may affect the container. Consider backing up your data beforehand.`,
500500
variant: 'danger',
501501
confirmText: script.container_id,
502502
confirmButtonText: 'Update Script',

0 commit comments

Comments
 (0)