bee3c7e847
This commit is the result of running `yarn eslint --fix` after enabling the `no-implicit-coercion` ESLint rule. This rule has been added to our ESLint config here: https://gitlab.com/gitlab-org/gitlab-eslint-config/merge_requests/14
5 lines
100 B
JavaScript
5 lines
100 B
JavaScript
export default {
|
|
isLoggedIn(state, getters) {
|
|
return Boolean(getters.getUserData.id);
|
|
},
|
|
};
|