Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
@chakra-ui_react@3.24.2 source code.tar.gz | 2025-08-06 | 135.3 MB | |
@chakra-ui_react@3.24.2 source code.zip | 2025-08-06 | 136.7 MB | |
README.md | 2025-08-06 | 760 Bytes | |
Totals: 3 Items | 272.0 MB | 0 |
Patch Changes
-
333b063
Thanks @segunadebayo! - Fix issue where usingasChild
with invalid child elements orReact.lazy
components would throw an error.This issue more commonly occurs when composing with Next.js
Link
component.```tsx import { Breadcrumb } from "@chakra-ui/react" import Link from "next/link"
export default function Page() { return ( <Breadcrumb.Root> {/ 🧨 Throws an error /} <Breadcrumb.Link asChild> <Link href="#">aaaa</Link> </Breadcrumb.Link> </Breadcrumb.Root> ) } ```