App settings not visible #3981
-
Hi there, I changed some settings in the "App Settings" menu. The first time I made the changes these settings were instantly visible on the landing page. But then they just disappeared. Now only a few settings still have an effect. "Dark Theme" does not work anymore, "App Name" and "App Description" no longer appear and only the Favicon is displayed, the App Logo is not. I even tried the custom client, which looks nice on localhost:8080, but does not change anything on the actual website, despite being successfully deployed. I made sure that this is not a browser cache issue, and I tried a different internet connection to verify that there is no proxy in between delivering an outdated client. Does anyone else have similar problems? Or even a solution? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OK, I found the problem: The app config JSON string could not be parsed due to some newline characters (\n) I used in the "Magic Link Email Body" field (It's the script starting with So this means it's not possible to use newlines for the email body... |
Beta Was this translation helpful? Give feedback.
OK, I found the problem:
The app config JSON string could not be parsed due to some newline characters (\n) I used in the "Magic Link Email Body" field (It's the script starting with
window.APP_CONFIG = JSON.parse
on line 36 of the source in my case) .So this means it's not possible to use newlines for the email body...