fix key warning in console

This commit is contained in:
Josh Hawkins 2025-11-22 06:30:05 -06:00
parent 43071efa06
commit d7bb0fb787

View File

@ -572,9 +572,8 @@ export function SortTypeContent({
className="w-full space-y-1" className="w-full space-y-1"
> >
{availableSortTypes.map((value) => ( {availableSortTypes.map((value) => (
<div className="flex flex-row gap-2"> <div key={value} className="flex flex-row gap-2">
<RadioGroupItem <RadioGroupItem
key={value}
value={value} value={value}
id={`sort-${value}`} id={`sort-${value}`}
className={ className={