diff --git a/client/src/components/navbar/index.js b/client/src/components/navbar/index.js index b9cbcd2..449ec81 100644 --- a/client/src/components/navbar/index.js +++ b/client/src/components/navbar/index.js @@ -1,3 +1,4 @@ +/* eslint-disable react-hooks/exhaustive-deps */ import React,{ useState,useRef } from 'react'; import './style.scss'; import { Link, useLocation, useNavigate } from 'react-router-dom'; diff --git a/client/src/containers/tasks-board/index.js b/client/src/containers/tasks-board/index.js index 5bebf2a..58b0e57 100644 --- a/client/src/containers/tasks-board/index.js +++ b/client/src/containers/tasks-board/index.js @@ -1,3 +1,4 @@ +/* eslint-disable react-hooks/exhaustive-deps */ import React, { useEffect, useState } from 'react' import TopSection from './top-section'; import './styles.scss'; diff --git a/client/src/containers/tasks/index.js b/client/src/containers/tasks/index.js index 734e10d..8808320 100644 --- a/client/src/containers/tasks/index.js +++ b/client/src/containers/tasks/index.js @@ -1,3 +1,4 @@ +/* eslint-disable react-hooks/exhaustive-deps */ import WelcomePage from "./welcome-page"; import './styles.scss'; import { useDispatch } from "react-redux"; 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';