diff --git a/src-web/components/UrlBar.tsx b/src-web/components/UrlBar.tsx index 2916cbfd..b65cce08 100644 --- a/src-web/components/UrlBar.tsx +++ b/src-web/components/UrlBar.tsx @@ -113,6 +113,10 @@ export const UrlBar = memo(function UrlBar({ iconColor="secondary" icon={isLoading ? 'x' : submitIcon} hotkeyAction="http_request.send" + onMouseDown={(e) => { + // Prevent the button from taking focus + e.preventDefault(); + }} /> )}