From db53f54bfc071ef4336c87e0883994d3bb3d0fc2 Mon Sep 17 00:00:00 2001 From: Chris Veleris Date: Wed, 2 Jul 2025 16:35:12 +0300 Subject: [PATCH] Remove bottom border from inbox modal input --- frontend/components/Inbox/InboxModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/Inbox/InboxModal.tsx b/frontend/components/Inbox/InboxModal.tsx index de6f230..5e328c4 100644 --- a/frontend/components/Inbox/InboxModal.tsx +++ b/frontend/components/Inbox/InboxModal.tsx @@ -396,7 +396,7 @@ const InboxModal: React.FC = ({ } }} required - className="w-full text-xl font-semibold dark:bg-gray-800 text-black dark:text-white border-b-2 border-gray-200 dark:border-gray-900 focus:outline-none shadow-sm py-2" + className="w-full text-xl font-semibold dark:bg-gray-800 text-black dark:text-white focus:outline-none shadow-sm py-2" placeholder={t('inbox.captureThought')} onKeyDown={(e) => { if (e.key === 'Enter' && !e.shiftKey && !isSaving && !showTagSuggestions) {