HELP!! Client Side Error #393
-
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
@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 || "");