Skip to content

Commit

Permalink
chore(VChipGroup): temporary workaround for type error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Jan 16, 2024
1 parent fa70dfd commit f02221b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vuetify/src/components/VChipGroup/VChipGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ export const VChipGroup = genericComponent<new <T>(
})

useRender(() => {
const [slideGroupProps] = VSlideGroup.filterProps(props)
// TODO: fix type
const [slideGroupProps] = VSlideGroup.filterProps(props) as any

return (
<VSlideGroup
Expand Down

0 comments on commit f02221b

Please sign in to comment.