disable undo/redo for now

pull/1276/head
Dax Raad 2025-07-23 21:02:13 -04:00
parent 8f0644e35b
commit ff23f67ad5
1 changed files with 5 additions and 0 deletions

View File

@ -178,6 +178,11 @@ func New(
IntitialMode: initialMode,
}
if app.Version != "dev" {
delete(app.Commands, commands.MessagesUndoCommand)
delete(app.Commands, commands.MessagesRedoCommand)
}
return app, nil
}