Skip to content

Commit 55f5061

Browse files
committed
fix: show full tool names in quick drop catalog
1 parent 731a5a8 commit 55f5061

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function QuickDropModal({ file, onClear, onBack }: { file: File, onClear: () =>
140140
<div className={`p-2 rounded-xl ${tool.bg} ${tool.color} group-active:scale-110 transition-transform`}>
141141
<tool.icon size={18} strokeWidth={2.5} />
142142
</div>
143-
<span className="text-xs font-bold text-gray-900 dark:text-zinc-200">{tool.title.split(' ')[0]}</span>
143+
<span className="text-xs font-bold text-gray-900 dark:text-zinc-200">{tool.title}</span>
144144
</button>
145145
))}
146146
</div>
@@ -166,7 +166,7 @@ function QuickDropModal({ file, onClear, onBack }: { file: File, onClear: () =>
166166
<div className={`p-2 rounded-xl ${tool.bg} ${tool.color} group-active:scale-110 transition-transform`}>
167167
<tool.icon size={18} strokeWidth={2.5} />
168168
</div>
169-
<span className="text-xs font-bold text-gray-900 dark:text-zinc-200">{tool.title.split(' ')[0]}</span>
169+
<span className="text-xs font-bold text-gray-900 dark:text-zinc-200">{tool.title}</span>
170170
</button>
171171
))}
172172
</div>

0 commit comments

Comments
 (0)