You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when user togger currency selector, the following hook doesn't get trigger
stencilUtils.hooks.on('currencySelector-toggle', (event) => {
console.log('event', event);
});
i checked the base code:
currencySelector() {
this.subscribe('input', '[data-currency-selector-toggle]', (event) => {
this.emit('currencySelector-toggle', event);
});
}
i wasn't able to find [data-currency-selector-toggle] on store with currency selector
The text was updated successfully, but these errors were encountered:
when user togger currency selector, the following hook doesn't get trigger
stencilUtils.hooks.on('currencySelector-toggle', (event) => {
console.log('event', event);
});
i checked the base code:
currencySelector() {
this.subscribe('input', '[data-currency-selector-toggle]', (event) => {
this.emit('currencySelector-toggle', event);
});
}
i wasn't able to find [data-currency-selector-toggle] on store with currency selector
The text was updated successfully, but these errors were encountered: