# Disallow `override` on non-literal computed names in classes https://github.com/microsoft/TypeScript/pull/60691 * For the longest time, computed names in classes with non-literal names were ignored. * But we let you write `override` on there. But we never enforced it. * So this change makes it an error to write `overrride`. * Not controversial.