Skip to content

Commit

Permalink
Merge pull request #8 from oslabs-beta/cleanup
Browse files Browse the repository at this point in the history
cleaned up console.log messages
  • Loading branch information
ricardodgers authored Aug 18, 2021
2 parents b2e1a77 + 2a766d0 commit 83c7a88
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ MY_PHONE_NUMBER='your mobile number'
TWILIO_ACCOUNT_SID='code from your console'
TWILIO_AUTH_TOKEN='token from your console'
SERVICE_SID='code from notify service instance'
VERIFICATION_SERVICE_SID='code from verify service instance'
VERIFICATION_SERVICE_SID='code from verify service instance'
POSTGRES_URI='your postgres url'
3 changes: 0 additions & 3 deletions src/components/tabs/Users.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ const UserTable = () => {

const id = event.target.getAttribute('id');
const invertPreviousValue = (!selected[id]);
// Bug: unable to pull custom attribute on Checkbox props, even with getAttribute https://www.pluralsight.com/guides/how-to-access-custom-attributes-from-aevent-object-in-react
// console.log('checkbox clicked: ', event.target.getAttribute('userid'));
// console.log('checkbox clicked: ', event.target.userid);

// create temporary copy of selected object
const temp = {
Expand Down
1 change: 0 additions & 1 deletion src/reducers/graphReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ const initialState = {
const graphReducer = (state = initialState, action) => {
switch (action.type) {
case types.BUILD_AXIS:
// console.log('action.payload build axis:', action.payload);
if (action.payload === 'clear') return { ...state, graphAxis: [] };
// cuts day of week from begingin and the timezone off the end.
let formatedDate = action.payload.toString().slice(4, 24);
Expand Down

0 comments on commit 83c7a88

Please sign in to comment.