This fixes cache issues with the <Cache> component hanging on SSR, the solution we chose to go with is to just don't use the Cache component and instead cache operations inside of the <Markdown> component itself.
Additionnaly, we also fixed issues with the client references being undefined in the <Cache> component.
Type of Change
[x] Bug fix (non-breaking change which fixes an issue)
[ ] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
Description
This fixes cache issues with the
<Cache>
component hanging on SSR, the solution we chose to go with is to just don't use theCache
component and instead cache operations inside of the<Markdown>
component itself.Additionnaly, we also fixed issues with the client references being undefined in the
<Cache>
component.Type of Change