Skip to content

Commit e499d3c

Browse files
committed
remove highlighting
1 parent cf0c21b commit e499d3c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

components/table/static-table.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,11 @@ const StaticTable = ({
173173
</TableHeader>
174174
<TableBody items={data} emptyContent={emptyContent ?? DEFAULT_EMPTY}>
175175
{(item) => {
176-
const isHighlighted =
177-
(item.labels.includes("kudos") || item.isCertified) &&
178-
pathname !== "/carnival" &&
179-
!pathname.includes("certified");
176+
// const isHighlighted =
177+
// (item.labels.includes("kudos") || item.isCertified) &&
178+
// pathname !== "/carnival" &&
179+
// !pathname.includes("certified");
180+
const isHighlighted = false;
180181

181182
return (
182183
<TableRow

0 commit comments

Comments
 (0)