show emoji in tabs

This commit is contained in:
Chris Wanstrath 2026-02-04 10:31:20 -08:00
parent 0d81406190
commit 9bf3973020

View File

@ -23,7 +23,7 @@ export function Nav({ app, render }: { app: App; render: () => void }) {
return (
<TabBar>
<Tab active={selectedTab === 'overview' ? true : undefined} onClick={() => handleTabClick('overview')}>
Overview
📋 Overview
</Tab>
{tools.map(tool => {
const toolName = typeof tool.tool === 'string' ? tool.tool : tool.name
@ -33,7 +33,7 @@ export function Nav({ app, render }: { app: App; render: () => void }) {
active={selectedTab === tool.name ? true : undefined}
onClick={() => handleTabClick(tool.name)}
>
{titlecase(toolName)}
{tool.icon} {titlecase(toolName)}
</Tab>
)
})}