Skip to content

Commit

Permalink
Self code review
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVelezLl committed Feb 29, 2024
1 parent cb16a17 commit f1924c2
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@
},
},
mounted() {
console.log('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA');
this.updateTabTitle('Channels - Administration');
},
methods: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import VueRouter from 'vue-router';
import { RouteNames } from './constants';
import ChannelTable from './pages/Channels/ChannelTable.vue';
import ChannelTable from './pages/Channels/ChannelTable';
import ChannelDetails from './pages/Channels/ChannelDetails';
import UserTable from './pages/Users/UserTable';
import UserDetails from './pages/Users/UserDetails';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@
return RouteToListTypeMapping[this.$route.name];
},
toolbarHeight() {
console.log('loggedIn', this.loggedIn);
return this.loggedIn && !this.isFAQPage ? 112 : 64;
},
contentOffset() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export default {
return state.currentUser.id;
},
loggedIn(state) {
console.log('state.currentUser', JSON.stringify(state.currentUser));
return (
state.currentUser && state.currentUser.id !== undefined && state.currentUser.id !== null
);
Expand Down

0 comments on commit f1924c2

Please sign in to comment.