Corrected feature_helper isNewRepo query

This commit is contained in:
Luke "Jared" Bennett 2017-07-28 17:56:11 +01:00
parent efabd07cc5
commit 168db5064e
No known key found for this signature in database
GPG Key ID: 402ED51FB5D306C2
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import Cookies from 'js-cookie';
function isNewRepo() {
return Cookies.get('new_nav') === 'true';
return Cookies.get('new_repo') === 'true';
}
const FeatureHelper = {