fix tab name

This commit is contained in:
2025-06-16 02:29:12 +09:00
parent c8377ceabf
commit 167cfb35f7

View File

@ -1197,25 +1197,25 @@ function App() {
className={`tab-button ${activeTab === 'comments' ? 'active' : ''}`}
onClick={() => setActiveTab('comments')}
>
Comments ({comments.filter(shouldShowComment).length})
comment ({comments.filter(shouldShowComment).length})
</button>
<button
className={`tab-button ${activeTab === 'ai-chat' ? 'active' : ''}`}
onClick={() => setActiveTab('ai-chat')}
>
AI Chat ({aiChatHistory.length})
chat ({aiChatHistory.length})
</button>
<button
className={`tab-button ${activeTab === 'lang-en' ? 'active' : ''}`}
onClick={() => setActiveTab('lang-en')}
>
AI Lang:en ({langEnRecords.length})
en ({langEnRecords.length})
</button>
<button
className={`tab-button ${activeTab === 'ai-comment' ? 'active' : ''}`}
onClick={() => setActiveTab('ai-comment')}
>
AI Comment ({aiCommentRecords.length})
feedback ({aiCommentRecords.length})
</button>
</div>
@ -1543,4 +1543,4 @@ function App() {
);
}
export default App;
export default App;