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
bretondevbretondev 

Trailhead Superbadge : Lightning Experience Rollout Specialist step 6

I think I am close to passing step 6 but I am getting this error message :
Challenge Not yet complete... here's what's wrong:
We couldn't find the BoatDetails component on the Friends with Boats Lightning page.


I had some layouts in the page so that my components are laid out correctly.
Because of the error message, I thought I am not passing the challenge because my BoatDetails component is surrounded by divs and lightning:layout.
So Iremoved all of them but still, I get the error.

This is what I have left now, please help :
 
<aura:application extends="force:slds" >
	
    <lightning:card title="Find a Boat" class="slds-m-top_xx-large" >
        <c:BoatSearch />
    </lightning:card>

      <c:BoatDetails />

</aura:application>