I have a JSObject that is allowed to run on page load:
export default {
load: async () => {
get_sensorsondejoin.run();
storeValue('sensorsjoin', get_sensorsondejoin.data);
}
}
This works great and does run on page load - but I see a success message load ran successfully
when it works.
How can I suppress this success message (or use my own message)?
(Sorry in advance as my js is rusty apparently…)