Skip to content
Snippets Groups Projects
Commit 641dcecb authored by Arie Peterson's avatar Arie Peterson
Browse files

Remove debug console log

parent cf9767f5
No related branches found
No related tags found
1 merge request!97Resolve "View user UUID in dashboard"
...@@ -10,7 +10,6 @@ export const getAuthToken = (state: State) => state.auth.token; ...@@ -10,7 +10,6 @@ export const getAuthToken = (state: State) => state.auth.token;
export const getCurrentUser = (state: State) => state.auth.userInfo; export const getCurrentUser = (state: State) => state.auth.userInfo;
export const getIsAdmin = (state: State) => { export const getIsAdmin = (state: State) => {
window.console.log(state.auth.userInfo);
// check since old users wont have this // check since old users wont have this
if (state.auth.userInfo) { if (state.auth.userInfo) {
if (!state.auth.userInfo.app_roles) { if (!state.auth.userInfo.app_roles) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment