Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix(COR-1769): Remove unused filter
Browse files Browse the repository at this point in the history
  • Loading branch information
VWSCoronaDashboard29 committed Sep 19, 2023
1 parent e2cd9a7 commit bc4716d
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export function getVariantTableData(variants: NlVariants | undefined, namedDiffe
color: variantColors.find((variantColor) => variantColor.variant === namedDifferenceEntry.variant_code)?.color || colors.gray5,
};
})
.filter((variantRow) => variantRow !== null)
.sort((a, b) => {
// Other Variants must always take the bottom row in the table
if (a.variantCode === 'other_variants') return 1;
Expand Down

0 comments on commit bc4716d

Please sign in to comment.