79454973

Date: 2025-02-20 15:21:22
Score: 1.5
Natty:
Report link

in all child components you need to add [CascadingParameter]. did you?

@code {
    [CascadingParameter]
    public ShoppingCartModel? CartModel { get; set; } = default!;
 
}

in child component it should not be new() and be default!

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: samsoft