Issue with mounting the frontend module (frontend-app-authoring) on Tutor

I attempted to mount my modified frontend module on Tutor, but the black background change isn’t showing and local launch triggers authentication errors.

def attach_component(module_dir):
    config = {"theme_color": "black"}
    return boot_tutor_module(module_dir, config)

attach_component("authoring")

hey, i once faced a similar mouting issue. try restarting tutor completely and check if the updated config file is really used, sometimes caching old tokens causes auth errors. a full clear flush helped me out. good luck!

hey, im curious if you tried a full system restart. sometimes tutor doesn’t pick up modifed changes right away. could the authen error be due to a lingering cache? what do you think might be affecting the theme config display?

The issue may be related to how the configuration settings are applied when mounting the module. It is possible that the update to the theme_color is not being properly reloaded by Tutor, and in some cases, changes in the module’s configurations have not been reflected until the application cache is cleared. The authentication error might be a related symptom indicating that internal data is not synchronized with external modifications. I encountered a similar problem and resolved it by ensuring that the module directory paths and configuration settings were updated consistently.