From 3920da3c3a822833814b5bced30c88ead6dd91da Mon Sep 17 00:00:00 2001 From: lorsan Date: Sun, 25 Jan 2026 11:47:23 +0300 Subject: [PATCH] Fix frontend --- frontend/src/pages/ChatPage.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/pages/ChatPage.tsx b/frontend/src/pages/ChatPage.tsx index c8adc34..07e888b 100644 --- a/frontend/src/pages/ChatPage.tsx +++ b/frontend/src/pages/ChatPage.tsx @@ -33,8 +33,7 @@ export default function ChatPage() { // User profile modal state const [viewingUser, setViewingUser] = useState(null); - // eslint-disable-next-line @typescript-eslint/no-unused-vars - const [userProfileLoading, setUserProfileLoading] = useState(false); + const [_userProfileLoading, setUserProfileLoading] = useState(false); // Message input state const [messageText, setMessageText] = useState('');