show emoji in tabs
This commit is contained in:
parent
0d81406190
commit
9bf3973020
|
|
@ -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>
|
||||
)
|
||||
})}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user