I have just converted id to toString method and issue has been resolved.
<SelectContent> {data?.results.map((row) => ( <SelectItem key={row.id} value={row.id.toString()}> {row.name} </SelectItem> ))} </SelectContent>