fixed minor bug with cookie consent btn
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2022-01-30 20:28:08 +01:00
parent e4a4d64fb5
commit b29fc2b744

View File

@@ -51,7 +51,7 @@ export default {
}
const hasConsentGiven = () => {
if (cookies.get('consent').toString() === 'given')
if (cookies.get('consent') === 'given')
consent.value = true
}