limited-elephant-93657
07/29/2025, 4:08 AMconst myOverrides = {
Card: {
Header: MyCustomHeader,
// Override the card header component <- this works
},
Node: {
Label: () => null, _// Override labels with our test component <- this doesn't work_
},
}
export function LoginWithCustomComponents({
_flow_,
_config_,
}: {
flow,
config
}) {
return <Login flow={_flow_} config={_config_} components={myOverrides} />
}