Is there a way for the component in angular to just re-render itself with the correct selected mode without a reload?
I was following this questions
https://devs.keenthemes.com/question/switch-between-light-and-dark-mode-without-reloading-page-with-angular-template
but it did not work
I apologize if this is not the correct place to ask a regular license question
Hi
Apologise for the delay in response. Make sure there are no errors in the browser console that could be causing the issue.
Ensure that your component is listening to changes in the mode observable correctly. If it's not re-rendering, there might be an issue with how the component is subscribed to mode.next(updatedMode).
Thank you