You need to sign in to do that
Don't have an account?

LWC Action Not Display In Mobile
I created a simple LWC to be called from Actions and added to the "Salesforce Mobile and Lightning Experience Actions" section in the page layout. The "Send Mail LWC" action displayed and worked properly when I logged in from a web browser, but not displaying in the Action list in Salesforce Mobile app.
Did I miss any configuration?
Page Layout Config

Browser Display

Mobile

LWC Component
dispatchIssue.html
<template> </template>
dispatchIssue.js
import { LightningElement, api } from 'lwc';
export default class DispatchIssue extends LightningElement {
@api invoke() {
console.log("Hi, I'm an action.");
}
}
dispatchIssue.js-meta.xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>52.0</apiVersion>
<masterLabel>Dispatch Issue</masterLabel>
<isExposed>true</isExposed>
<targets>
<target>lightning__RecordAction</target>
<target>lightning__RecordPage</target>
</targets>
<targetConfigs>
<targetConfig targets="lightning__RecordAction">
<actionType>Action</actionType>
</targetConfig>
<targetConfig targets="lightning__RecordPage">
<supportedFormFactors>
<supportedFormFactor type="Large" />
<supportedFormFactor type="Small" />
</supportedFormFactors>
</targetConfig>
</targetConfigs>
</LightningComponentBundle>
Did I miss any configuration?
Page Layout Config
Browser Display
Mobile
LWC Component
dispatchIssue.html
<template> </template>
dispatchIssue.js
import { LightningElement, api } from 'lwc';
export default class DispatchIssue extends LightningElement {
@api invoke() {
console.log("Hi, I'm an action.");
}
}
dispatchIssue.js-meta.xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>52.0</apiVersion>
<masterLabel>Dispatch Issue</masterLabel>
<isExposed>true</isExposed>
<targets>
<target>lightning__RecordAction</target>
<target>lightning__RecordPage</target>
</targets>
<targetConfigs>
<targetConfig targets="lightning__RecordAction">
<actionType>Action</actionType>
</targetConfig>
<targetConfig targets="lightning__RecordPage">
<supportedFormFactors>
<supportedFormFactor type="Large" />
<supportedFormFactor type="Small" />
</supportedFormFactors>
</targetConfig>
</targetConfigs>
</LightningComponentBundle>
https://help.salesforce.com/s/articleView?id=sf.lightning_web_component_actions_create.htm&type=5