How to Fix Compilation LWC1010: Failed to resolve entry for module

This “LWC1010:Failed to resolve entry for module” compilation error is caused by an invalid reference to the component filename. By default camel case component folder names are mapped to kebab-case in the markup when calling them from Lightning Web Components. To resolve entry for module errors check the proper naming and hyphen. Eg. myComponent would… Read More How to Fix Compilation LWC1010: Failed to resolve entry for module

How To Enable SObject Intellisense in VSCode for Salesforce DX

Quick Tip. Salesforce DX already comes with Intellisense for Apex classes and the different primitive types. Eg. Strings For SObjects it’s a per-project setting you need to enable once you have your project created. Open the Command Palette and choose SFDX: Refresh SObject Definitions What the command does under the hood is it will create… Read More How To Enable SObject Intellisense in VSCode for Salesforce DX

Fix for flowruntime:lookup Error With Salesforce Flows

If you recently used the custom lookup component while working on Salesforce Flows and get this error. We can’t display component ‘flowruntime:lookup’, because it isn’t supported in Classic runtime.  Chances are you still are on Classic. The component only works on Lightning. An easy fix is to enable the Lightning runtime in Flows. From Setup,… Read More Fix for flowruntime:lookup Error With Salesforce Flows