Merge pull request #138 from beatz174-bit/codex/fix-packaging-type-radio-filter-in-active-pick-list
Fix packaging filter radio selection
This commit is contained in:
@@ -432,9 +432,7 @@ export const ActivePickListScreen = () => {
|
||||
<RadioGroup
|
||||
row
|
||||
value={appliedItemFilter}
|
||||
onChange={(event) =>
|
||||
setItemFilter(event.target.value as 'all' | 'cartons' | 'units')
|
||||
}
|
||||
onChange={(_, value) => setItemFilter(value as 'all' | 'cartons' | 'units')}
|
||||
sx={{ flexGrow: 1 }}
|
||||
>
|
||||
<FormControlLabel value="all" control={<Radio />} label="All" />
|
||||
|
||||
Reference in New Issue
Block a user