Skip to content

Commit

Permalink
typo fix for windows disk encryption error message (#25661)
Browse files Browse the repository at this point in the history
For #21691

quick type fix for the windows disk encryption error message
  • Loading branch information
ghernandez345 authored Jan 22, 2025
1 parent 347c65b commit 25ebcfd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/pages/hosts/details/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const generateWindowsDiskEncryptionMessage = (
detail: string
) => {
if (status === "failed") {
detail += " Fleet will retry automatically.";
detail += ". Fleet will retry automatically.";
}
return detail;
};
Expand All @@ -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
Expand Down

0 comments on commit 25ebcfd

Please sign in to comment.