From 00dea06178ab280c98dadd6eae71182d15135545 Mon Sep 17 00:00:00 2001 From: Sumit_growpital Date: Tue, 15 Aug 2023 16:43:47 +0530 Subject: [PATCH] removed another console.log --- .github/workflows/client.yml | 10 +++++++--- client/src/services/tasks/taskBoards.js | 1 - 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 7f70627..8b949cb 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -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 diff --git a/client/src/services/tasks/taskBoards.js b/client/src/services/tasks/taskBoards.js index 21a24e9..d55387a 100644 --- a/client/src/services/tasks/taskBoards.js +++ b/client/src/services/tasks/taskBoards.js @@ -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';