Fix typo in "clean up duplicate Zoom" migration query (#27420)

This commit is contained in:
Ian Littman 2025-03-21 15:59:32 -05:00 committed by GitHub
parent 0d7b8c206c
commit 1f42204002
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,7 +98,7 @@ ALTER TABLE fleet_maintained_apps
// clear old Zoom FMA before swapping in new one
if len(slugs) > 1 || (len(slugs) == 1 && slugs[0] == "zoom/darwin") {
_, err = tx.Exec(`DELETE FROM fleet_maintaned_apps WHERE slug = 'zoom/darwin'`)
_, err = tx.Exec(`DELETE FROM fleet_maintained_apps WHERE slug = 'zoom/darwin'`)
if err != nil {
return fmt.Errorf("failed to remove duplicate Zoom FMA: %w", err)
}