typo fix for windows disk encryption error message (#25661)

For #21691

quick type fix for the windows disk encryption error message
This commit is contained in:
Gabriel Hernandez 2025-01-22 16:50:52 +00:00 committed by GitHub
parent 347c65b5c6
commit 25ebcfd161
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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