We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf0c21b commit e499d3cCopy full SHA for e499d3c
components/table/static-table.tsx
@@ -173,10 +173,11 @@ const StaticTable = ({
173
</TableHeader>
174
<TableBody items={data} emptyContent={emptyContent ?? DEFAULT_EMPTY}>
175
{(item) => {
176
- const isHighlighted =
177
- (item.labels.includes("kudos") || item.isCertified) &&
178
- pathname !== "/carnival" &&
179
- !pathname.includes("certified");
+ // const isHighlighted =
+ // (item.labels.includes("kudos") || item.isCertified) &&
+ // pathname !== "/carnival" &&
+ // !pathname.includes("certified");
180
+ const isHighlighted = false;
181
182
return (
183
<TableRow
0 commit comments