mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
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:
parent
347c65b5c6
commit
25ebcfd161
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue