From 4c7a75f8a3c41b0f2371caf19c8e2696dba3f399 Mon Sep 17 00:00:00 2001 From: Alexandre Magno Date: Thu, 22 Feb 2024 17:28:05 +0100 Subject: [PATCH] fixing navigation on issue explorer to allow to navigate without require login --- frontend/src/components/task/task-table.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/task/task-table.js b/frontend/src/components/task/task-table.js index 299f4162..c8aa20fa 100644 --- a/frontend/src/components/task/task-table.js +++ b/frontend/src/components/task/task-table.js @@ -176,8 +176,7 @@ class CustomPaginationActionsTable extends React.Component { }; handleClickListItem = task => { - console.log('user', this.props) - const url = this.props.user ? `/profile/task/${task.id}/${slugify(task.title)}` : `/task/${task.id}/${slugify(task.title)}` + const url = `/task/${task.id}/${slugify(task.title)}` this.props.history.push(url) }