From 25ebcfd16177a6fbfb91d40f2126761277135ad5 Mon Sep 17 00:00:00 2001 From: Gabriel Hernandez Date: Wed, 22 Jan 2025 16:50:52 +0000 Subject: [PATCH] typo fix for windows disk encryption error message (#25661) For #21691 quick type fix for the windows disk encryption error message --- frontend/pages/hosts/details/helpers.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/pages/hosts/details/helpers.ts b/frontend/pages/hosts/details/helpers.ts index 91b78f79ff..1be9f46561 100644 --- a/frontend/pages/hosts/details/helpers.ts +++ b/frontend/pages/hosts/details/helpers.ts @@ -20,7 +20,7 @@ const generateWindowsDiskEncryptionMessage = ( detail: string ) => { if (status === "failed") { - detail += " Fleet will retry automatically."; + detail += ". Fleet will retry automatically."; } return detail; }; @@ -30,7 +30,6 @@ const generateWindowsDiskEncryptionMessage = ( * this as we don't have a windows disk encryption profile in the `profiles` * attribute coming back from the GET /hosts/:id API response. */ -// eslint-disable-next-line import/prefer-default-export export const generateWinDiskEncryptionSetting = ( diskEncryptionStatus: WindowsDiskEncryptionStatus, detail: string