function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Manish Anand 22Manish Anand 22 

Trailhead Superbadge- lightning component framework specialist : Challenge 2

I am stuck in challenge 2. Functionality is working as expected. But I get error as - Challenge Not yet complete... here's what's wrong: 
The BoatSearch component should instantiate the BoatSearchForm and BoatSearchResults components.

Below is my BoatSearch component.
 
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes" access="global" >
    <lightning:card title="Find a Boat"  class="slds-m-top_10px">
        <c.BoatSearchForm/>
    </lightning:card>
    <lightning:card title="Matching Boats">
        <c.BoatSearchResults/>
    </lightning:card>
</aura:component>
Any lead is appreciated.
Thanks,
Manish
Best Answer chosen by Manish Anand 22
Pradeep SinghPradeep Singh
Hi,
Instead of <c.BoatSearchForm/> use <c:BoatSearchForm/>

If this solves your issue, please mark it as solved.

All Answers

Pradeep SinghPradeep Singh
Hi,
Instead of <c.BoatSearchForm/> use <c:BoatSearchForm/>

If this solves your issue, please mark it as solved.
This was selected as the best answer
Manish Anand 22Manish Anand 22
Yes. Thanks.