In this section I have a couple of issues
first on IssueStatusFilter.tsx
const IssueStatusFilter = () => {
const router = useRouter();
return (
<Select.Root
onValueChange={(status) => {
const query = status ? `?status=${status}` : '';
router.push('/issues/list' + query);
}}
>
<Select.Trigger placeholder="Filter by status..." />
<Select.Content>
{statuses.map((status) => (
<Select.Item
key={status.value}
value={status.value}
>
{status.label}
</Select.Item>
))}
</Select.Content>
</Select.Root>
);
};
<Select.Item /> must have a value prop that is not an empty string.
I fixed it by change onValueChange
onValueChange={(value) => {
const statusToSend = value === ‘ALL’ ? ‘’ : value;
const query = statusToSend ? ?status=${statusToSend}
: ‘’;
router.push(‘/issues/list’ + query);
}}
>
its work fine but the IssuePage get the status as undefined
interface Props {
searchParams: { status: Status };
}
const IssuePage = async({ searchParams }: Props) => {
console.log(“searchParams”, searchParams.status) // undefined
----- rest of code
}
next-app version 15.0.3 and raduix theme ^3.1.6
anyone solve this problem?