Skip to content

Commit

Permalink
fix:remove console.log from frontend (#1105)
Browse files Browse the repository at this point in the history
* feat: generic banner message for first time user

As a new user who logs in to CHEFS for the first time, I want to get the generic banner message, so I know that I am registered and to know my next step.

* test: testing if the banner will show in PR

* Update form.js

* Update form.js

* fix:remove console.log
  • Loading branch information
timisenco2015 authored Oct 24, 2023
1 parent 1a9d38c commit 512367b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/frontend/src/store/modules/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,7 @@ export default {
// Get the forms based on the user's permissions
const response = await rbacService.getCurrentUser();
const data = response.data;
console.log('++++++++++++', data);
if (data && data.firstTimeUserLogin) {
console.log('++++++++++++', data.firstTimeUserLogin);
dispatch('setFirstTimeUserLogin', true);
}
// Build up the list of forms for the table
Expand Down

0 comments on commit 512367b

Please sign in to comment.