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
Amiya Das1410Amiya Das1410 

LWC1010: Failed to resolve entry for module error

My web component name is :- 'paginatorLWC'. I am calling this from another web component via : <c-paginator-lwc></<c-paginator-lwc>.
Can somebody suggest what is reason for error :  'LWC1010: Failed to resolve entry for module'. I tried :- <c-paginator-LWC></<c-paginator-LWC> also. I know this is case sensitive. 

Thanks in Advance.
Khan AnasKhan Anas (Salesforce Developers) 
Hi Amiya,

Greetings to you!

LWC references are case-sensitive. Please refer to the below links which might help you further with the above issue.

https://developer.salesforce.com/forums/?id=9062I000000IDrlQAG

https://salesforce.stackexchange.com/questions/260749/unable-to-understand-and-fix-problem-lwc1010-failed-to-resolve-entry-for-module?rq=1

https://salesforce.stackexchange.com/questions/264383/how-to-refer-child-component-name-in-parent-component-lwc

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
ranbir das 1ranbir das 1
HI Amiya
please use
paginator-l-w-c
because of capitalization rule.
Deepesh Dubey 7Deepesh Dubey 7
Hi 
my web component name is 'datatablePickList', i am calling this from another component as <c-datatable-picklist></c-datatable-picklist>
can someone suggest resolution for the issue:    /c/datatablePicklist/datatablePickList.js:0,0 : LWC1010: Failed to resolve entry for module "datatablePickList".
 
Ajay Kumar Vijay 1Ajay Kumar Vijay 1

Hi Deepesh Dubey,
I hope you found the issue but just in case you have not then you need to use <c-datatable-pick-list></c-datatable-pick-list> instead of <c-datatable-picklist></c-datatable-picklist>.

Pratiksha Jadhav 24Pratiksha Jadhav 24
Thank-you  Ajay Kumar Vijay 1 your answer helped me resolve my issue.