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
Herman p NgHerman p Ng 

Trailhead: Build the AccountList Component error

If you receive an error relate to unknown getAccounts.

Then try change the aura attribute in componment as follow and try again. 
<aura:component controller="AccountsController">
  <aura:attribute name="accounts" type="List" />
to 
<aura:component controller="AccountsController">
  <aura:attribute name="accounts" type="Account[]" />

 
SandhyaSandhya (Salesforce Developers) 
Hi,

I have tried this challenge now and I was able to clear the challenge with 
<aura:attribute name="accounts" type="List" />
Thanks and Regards
Sandhya