summaryrefslogtreecommitdiff
path: root/tui.go
diff options
context:
space:
mode:
Diffstat (limited to 'tui.go')
-rw-r--r--tui.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/tui.go b/tui.go
index 54a4e32..d222d15 100644
--- a/tui.go
+++ b/tui.go
@@ -832,13 +832,6 @@ func init() {
// Handle Alt+7 to toggle injectRole
if event.Key() == tcell.KeyRune && event.Rune() == '7' && event.Modifiers()&tcell.ModAlt != 0 {
injectRole = !injectRole
- status := "disabled"
- if injectRole {
- status = "enabled"
- }
- if err := notifyUser("injectRole", "Role injection "+status); err != nil {
- logger.Error("failed to send notification", "error", err)
- }
updateStatusLine()
}
if event.Key() == tcell.KeyF1 {