Skip to content

Commit

Permalink
removed another console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit_growpital committed Aug 15, 2023
1 parent 4205c94 commit 00dea06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@ jobs:
run: cd client && npm install

- name: Build client
run: cd client && npm run build
run: |
cd client
npm run build
- name: Deploy client
run: cd client && npm run deploy
run: |
cd client
npm run deploy
env:
REACT_APP_BASE_URI: ${{ secrets.REACT_APP_BASE_URI }}
with:
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./client/build
1 change: 0 additions & 1 deletion client/src/services/tasks/taskBoards.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const getAllBoards = async () => {
};

export const createBoard = async (details) => {
console.log({details});
const token = getLocalStorageKey('token');
const url = process.env.REACT_APP_BASE_URI + '/api/v1/task-board/boards';

Expand Down

0 comments on commit 00dea06

Please sign in to comment.