If I use the usercentrics Extension in combination with cs-seo, cs-seo is calling a FrontendRenderer to render the search result view.
In this case usercentrics is loaded in the backend and scrolling is disabled.
Solution:
Adding
if (TYPO3_MODE == "BE") { return; }
to addLibrary() Function of PageRendererPreProcessor.php
If I use the usercentrics Extension in combination with cs-seo, cs-seo is calling a FrontendRenderer to render the search result view.
In this case usercentrics is loaded in the backend and scrolling is disabled.
Solution:
Adding
if (TYPO3_MODE == "BE") { return; }to addLibrary() Function of PageRendererPreProcessor.php