Fix review

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-21 11:27:25 +04:00
parent 937a0079fc
commit 98487953b9
5 changed files with 27 additions and 4 deletions

View File

@@ -357,7 +357,7 @@ export function CategorySection({ categoryKey, onDelete }: CategorySectionProps)
editingCookieIndex === index
? (
<EditCookieRow
key={index}
key={cookie.name}
cookie={{
name: cookie.name,
duration: cookie.duration,
@@ -369,7 +369,7 @@ export function CategorySection({ categoryKey, onDelete }: CategorySectionProps)
/>
)
: (
<Tr key={index}>
<Tr key={cookie.name}>
<Td>
<code className="text-sm font-mono">{cookie.name}</code>
</Td>