Fix typo in flash message (#26792)

"Failed ot" -> "Failed to"

![Screenshot 2025-03-03 at 5 38
16 PM](https://github.com/user-attachments/assets/3c9ab2b9-62a2-4eb8-bec5-94d159f2bcb9)
This commit is contained in:
Rachael Shaw 2025-03-05 15:16:02 -06:00 committed by GitHub
parent 88d4f8b4c6
commit 6886365468
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -108,7 +108,7 @@ const ChangeManagement = () => {
refetchConfig();
} catch (e) {
const message = getErrorReason(e);
renderFlash("error", message || "Failed ot update settings");
renderFlash("error", message || "Failed to update settings");
setIsUpdating(false);
}
};