HELP!! Client Side Error #393
Answered by
vassbo
Oct 18, 2024
Replies: 2 comments
|
@WFMCCAdmin This is most likely an issue on our side. @jzongker I might be wrong, but I guess we can fix this by changing this line: https://github.com/ChurchApps/AppHelper/blob/1f77e558de716641cadcf845ef48c6c79e4f1945/src/components/markdownEditor/MarkdownPreviewLight.tsx#L42 |
0 replies
Answer selected by
jzongker
|
I'm really sorry guys. I was just going through to close out old issues and noticed I overlooked this one! Yes, changing that line should fix the issue. I've made the change. @WFMCCAdmin let me know if you still encounter any problems. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@WFMCCAdmin This is most likely an issue on our side.
I see from the console that the
<MarkdownPreviewLight>component is expecting a string, but gettingnull.@jzongker I might be wrong, but I guess we can fix this by changing this line: https://github.com/ChurchApps/AppHelper/blob/1f77e558de716641cadcf845ef48c6c79e4f1945/src/components/markdownEditor/MarkdownPreviewLight.tsx#L42
to this:
const convertedText = getSpecialLinks(markdownString || "");