Skip to content

Commit 441e6d7

Browse files
committed
fix: removed console log
1 parent 1b719fb commit 441e6d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/containers/Projects/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Projects = ({ projects, auth, isLoading, projectsCount, loadProjects, load
2727
if (projectStatus) {
2828
params.status = projectStatus
2929
}
30-
console.log(isProjectManager, showOnlyMyProjects)
30+
3131
if (isProjectManager) {
3232
params.memberOnly = showOnlyMyProjects
3333
}
@@ -95,7 +95,7 @@ const Projects = ({ projects, auth, isLoading, projectsCount, loadProjects, load
9595
type='checkbox'
9696
id='isOpenAdvanceSettings'
9797
checked={showOnlyMyProjects}
98-
onChange={() => { setOnlyMyProjects(!showOnlyMyProjects) }}
98+
onChange={() => setOnlyMyProjects(!showOnlyMyProjects)}
9999
/>
100100
<label htmlFor='isOpenAdvanceSettings'>
101101
<div>Only My Projects</div>

0 commit comments

Comments
 (0)