Skip to content

Commit af188b1

Browse files
committed
remove row highlight on select
1 parent 4c830ec commit af188b1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

site/src/pages/TasksPage/TasksTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { TaskDeleteDialog } from "modules/tasks/TaskDeleteDialog/TaskDeleteDialo
3030
import { TaskStatus } from "modules/tasks/TaskStatus/TaskStatus";
3131
import { type FC, type ReactNode, useState } from "react";
3232
import { useNavigate } from "react-router";
33-
import { cn } from "utils/cn";
33+
3434
import { relativeTime } from "utils/time";
3535

3636
type TasksTableProps = {
@@ -201,7 +201,6 @@ const TaskRow: FC<TaskRowProps> = ({
201201
key={task.id}
202202
data-testid={`task-${task.id}`}
203203
{...clickableRowProps}
204-
className={cn(checked && "bg-surface-secondary")}
205204
>
206205
<TableCell>
207206
<div className="flex items-center gap-2">

0 commit comments

Comments
 (0)