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
Stella WuStella Wu 

Create a Lightning Component

Could someone help?  For the trailhead Creating a Lighnting Component challenge, why am I getting the message  
Challenge Not yet complete... here's what's wrong:  Could not find a Lightning Record Page named 'Account Record Page'.
User-added image

Thank you!
Best Answer chosen by Stella Wu
Ajeet28augAjeet28aug
That's great. Hope you'll like the answer or mark it best. 

Thanks.

All Answers

Lorraine AubertLorraine Aubert
I was hung up on this for a while too. I had to go to the Lightening App Builder and create a new record page for Account Record Page. It worked and I was able to complete the challenge!
Ajeet28augAjeet28aug
Hi Stella,

From Lightning setup go to Account Object, there you can find an option of record Page. Create a record page with the name defined in the Challange. 

Thanks & Best regards
Ajeet
Stella WuStella Wu
Thank you both! Passed the challengete! 

Stella
Ajeet28augAjeet28aug
That's great. Hope you'll like the answer or mark it best. 

Thanks.
This was selected as the best answer
Gary SchulteGary Schulte
After a lot of searching, I finally found this answer.  Following those instructions, I was able to complete the same challenge!  Thank you!
Elangovan KrishnaswamyElangovan Krishnaswamy
Hi,
I am getting the error 'Could not find a component named MyContactList' on the Account record page.' to complete this challenge. I have done the same as mentioned in the trial. My 'MyContactList' component code as,
<aura:component controller="MyContactListController" implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" >
    <aura:attribute name="recordId" type="Id" />
    <aura:attribute name="Account" type="Account" />
    <aura:attribute name="Contacts" type="Contact" />
    <aura:attribute name="Columns" type="List" />
    <force:recordData aura:id="accountRecord"
                  recordId="{!v.recordId}"
                  targetFields="{!v.Account}"
                  layoutType="FULL"
                  />
    <lightning:card iconName="standard:contact" title="{! 'Contact List for ' + v.Account.Name}">
        <!-- Contact list goes here -->
    </lightning:card>

</aura:component>

Could you please help me to complete this?
Thank you!