From 76414296a6eb2bff60e5969e4ef02e35b11d1922 Mon Sep 17 00:00:00 2001 From: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> Date: Thu, 3 Sep 2026 18:12:06 +0200 Subject: [PATCH] fix(ui): typo on storage delete modal (#11541) --- app/Livewire/Project/Service/FileStorage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Livewire/Project/Service/FileStorage.php b/app/Livewire/Project/Service/FileStorage.php index d6ab2ac151..cd209f6ae9 100644 --- a/app/Livewire/Project/Service/FileStorage.php +++ b/app/Livewire/Project/Service/FileStorage.php @@ -308,10 +308,10 @@ class FileStorage extends Component { return view('livewire.project.service.file-storage', [ 'directoryDeletionCheckboxes' => [ - ['id' => 'permanently_delete', 'label' => 'The selected directory and all its contents will be permantely deleted form the server.'], + ['id' => 'permanently_delete', 'label' => 'The selected directory and all its contents will be permanently deleted from the server.'], ], 'fileDeletionCheckboxes' => [ - ['id' => 'permanently_delete', 'label' => 'The selected file will be permanently deleted form the server.'], + ['id' => 'permanently_delete', 'label' => 'The selected file will be permanently deleted from the server.'], ], 'hostFileDeletionCheckboxes' => [ ['id' => 'permanently_delete', 'label' => 'Only the mount configuration will be removed. The host file will not be deleted.'],