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
sai srujan 7sai srujan 7 

No MODULE named markup://c:list found : [markup://c:selector]

mukesh guptamukesh gupta
Hi srujan,

Please follow below steps:- 

The closing tag must match with opening one <c-list> so the closing tag must be </c-list>

Set isExposed attibute to true in list component's metadata xml file:-

<isExposed> true </isExposed>


if you need any assistanse, Please let me know!!

Kindly mark my solution as the best answer if it helps you.

Thanks
Mukesh 
Suraj Tripathi 47Suraj Tripathi 47
Hi,

Paste below code in Meta.xml file in VSC.
<apiVersion>51.0</apiVersion>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__AppPage</target>
        <target>lightning__RecordPage</target>
        <target>lightning__HomePage</target>
      </targets>


Please mark it as Best Answer if it helps you.

Thanks & Regards
Suraj Tripathi
Aarif ElkhatibAarif Elkhatib
It looks like yopu have a tag in your html file that references a "seclector" that is not defined to your org. I wiould take it out if it's of no use for your lwc.
Shubhanshu Vishwakarma 2Shubhanshu Vishwakarma 2
I am replying this in 2023 coz i have faced similar issue and i found root cause so in your case your LWC seclector is refering child LWC list , this you can find in HTML as already folks mentioned check for isexposed tag in meta xml file also check closing tag of <c-list> , if these things are there and still you are facing it means this list lwc does not exist in your org or there will be spelling mistake or that child LWC is spelled differently in your org. ex. if we are refering <c-list> it could be <c-lists>  so we have to check <c-list> in your org.