fix: root: remove unused tea options

Ayman Bagabas created

We don't need to use `WithKeyReleases` and `WithUniformKeyLayout` in
order to get basic enhanced keyboard support.

Change summary

cmd/root.go | 2 --
1 file changed, 2 deletions(-)

Detailed changes

cmd/root.go 🔗

@@ -116,8 +116,6 @@ to assist developers in writing, debugging, and understanding code directly from
 		program := tea.NewProgram(
 			tui.New(app),
 			tea.WithAltScreen(),
-			tea.WithKeyReleases(),
-			tea.WithUniformKeyLayout(),
 			tea.WithMouseCellMotion(),            // Use cell motion instead of all motion to reduce event flooding
 			tea.WithFilter(tui.MouseEventFilter), // Filter mouse events based on focus state
 		)