rht02251626

This commit is contained in:
Rao 2025-02-25 16:26:59 +08:00
parent 3a21c5bab0
commit b0d0597d86
1 changed files with 3 additions and 24 deletions

View File

@ -69,10 +69,10 @@ export default function FilterSection({
return ( return (
<div className="bg-white p-6 rounded-lg shadow-sm space-y-6"> <div className="bg-white p-6 rounded-lg shadow-sm space-y-6">
<Form> {/* <Form>
</Form> </Form> */}
{taxonomies.map((tax) => { {taxonomies?.map((tax) => {
return ( return (
<> <>
<div> <div>
@ -88,27 +88,6 @@ export default function FilterSection({
})} })}
<Divider className="my-6" /> <Divider className="my-6" />
<div>
<h3 className="text-lg font-medium mb-4"></h3>
<Radio.Group
value={selectedLevel}
onChange={(e) => onLevelChange(e.target.value)}
className="flex flex-col space-y-3">
{levels.isLoading ? (
<Spin />
) : (
<>
<Radio value=""></Radio>
{levels.categories.map((level) => (
<Radio key={level} value={level}>
{level}
</Radio>
))}
</>
)}
</Radio.Group>
</div>
</div> </div>
); );
} }