Hi
Following "Showing a message on click" example at [https://docs.svar.dev/svelte/core/button/?_highlight=getcontext#catching-a-button-click] I receive an error about showNotice helper not being defined:
[500] GET /
TypeError: Cannot destructure property 'showNotice' of '(0 , vite_ssr_import_2.getContext)(...)' as it is undefined.
Code that triggers it:
// getting the helper
const { showNotice } = getContext("wx-helpers");
Do I need to install some other svar module besides svelte-core for messaging notices to work?
Regards