We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c447ef commit 91a2e5fCopy full SHA for 91a2e5f
src/App.tsx
@@ -388,8 +388,8 @@ function WordDictionary({
388
389
return (
390
<ul>
391
- {sortedEntries.map(([key, value]) => (
392
- <li style={{ listStyleType: `''` }}>
+ {sortedEntries.map(([key, value], index) => (
+ <li key={index}>
393
<button onClick={() => onRemove(key, value)}>Remove</button>
394
<Tippy content={parse(value)} className="markdown_tippy">
395
<span>{key}</span>
0 commit comments