diff --git a/lua/mcphub/utils/ui.lua b/lua/mcphub/utils/ui.lua index fcc9d6d..b0970bb 100644 --- a/lua/mcphub/utils/ui.lua +++ b/lua/mcphub/utils/ui.lua @@ -356,7 +356,7 @@ function M.confirm(message, opts) -- Enhanced window options with better styling win_opts.style = "minimal" - win_opts.border = vim.o.winborder ~= "" and vim.o.winborder or { "╭", "─", "╮", "│", "╯", "─", "╰", "│" } + win_opts.border = vim.o.winborder == "" and { "╭", "─", "╮", "│", "╯", "─", "╰", "│" } or nil win_opts.title_pos = "center" win_opts.title = { { " MCPHUB Confirmation ", Text.highlights.header_btn },