Hi there! I’m trying to use <s-button> component in pair with <s-menu> in secondary-actions of the <s-page>. And I found a bug that tones for buttons in the <s-menu> are not working.
For instanse, I want to have a delete button with a critical tone, but for some reasons it’s still gray.
This is my peace of code:
<s-button
key={selectedRows.length}
commandFor="bulk-actions-menu"
slot="secondary-actions"
accessibilityLabel="Selected offers bulk actions"
icon="caret-down"
>
{selectedRows.length} products selected
</s-button>
<s-menu
accessibilityLabel="Offer list bulk actions"
id="bulk-actions-menu"
>
<s-button icon="apps">Publish</s-button>
<s-button icon="delete" tone="critical">
Delete
</s-button>
</s-menu>
