diff --git a/ref-test/main.py b/ref-test/main.py
index aa270a9..40826af 100644
--- a/ref-test/main.py
+++ b/ref-test/main.py
@@ -36,7 +36,7 @@ def create_app():
def _check_cookie_consent():
if request.cookies.get('cookie_consent'):
return
- if any([ request.path.startswith(x) for x in [ '/admin/static/', '/static/', '/cookies/' ] ]):
+ if any([ request.path.startswith(x) for x in [ '/admin/static/', '/root/', '/quiz/static', '/cookies/' ] ]):
return
flash(f'Cookie Consent: This web site only stores minimal, functional cookies. It does not store any tracking information. By using this site, you consent to this use of cookies. For more information, see our privacy policy.', 'cookie_alert')