Test: instant cookieyes#2705
Conversation
Re-enables navigation.instant and injects the production CookieYes script into <head> so the real banner + auto-blocking can be exercised against instant navigation on a Netlify preview (CookieYes is normally GTM-injected and scoped to docs.codacy.com, so it never fires on preview hosts). Throwaway branch for diagnosing the unstyled-on-navigation issue. Not for master. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Up to standards ✅🟢 Issues
|
There was a problem hiding this comment.
Code Review
This pull request enables the navigation.instant feature in the MkDocs configuration and introduces a test-only CookieYes integration script to verify its behavior on preview environments. Feedback points out a typo in the CookieYes script source URL, which is missing the leading 'h' in https://.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| host (banner enabled + auto-blocking), NOT the production key that GTM | ||
| injects on docs.codacy.com. Do NOT merge this to master. #} | ||
| <!-- Start cookieyes banner --> | ||
| <script id="cookieyes" type="text/javascript" src="ttps://cdn-cookieyes.com/client_data/c5874f8d39a04e1ffb9c4b1c8b3074e9/script.js"></script> |
There was a problem hiding this comment.
The script URL protocol is missing the leading 'h' (ttps:// instead of https://). This will prevent the CookieYes banner script from loading. Please correct it to https://.
| <script id="cookieyes" type="text/javascript" src="ttps://cdn-cookieyes.com/client_data/c5874f8d39a04e1ffb9c4b1c8b3074e9/script.js"></script> | |
| <script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/c5874f8d39a04e1ffb9c4b1c8b3074e9/script.js"></script> |
👀 Live preview
🚧 To do