BearStudio / start-ui-web

πŸš€ Start UI [web] is an opinionated UI starter with 🟦 TypeScript, βš›οΈ React, ⚫️ NextJS, ⚑️ Chakra UI, 🟦 tRPC, πŸ” Lucia Auth, β–² Prisma, πŸ–οΈ TanStack Query, πŸ“• Storybook, 🎭 Playwright,πŸ“‹ React Hook Form,β—½From the 🐻 BearStudio Team
https://demo.start-ui.com
MIT License
1.39k stars 129 forks source link

DataList always visible #395

Closed mdouet421 closed 1 year ago

mdouet421 commented 1 year ago

It seems that DataList is always visible, even with isVisible={{ base: false, md: true }}

The problem comes from the component dataListRow, where the d={!showRow ? 'none' : undefined} should be replace by display={!showRow ? 'none' : undefined}