Skip to content

Commit 90bd2a5

Browse files
feat(discoveryDetailPanelTags): Removed stray ;
1 parent 5799139 commit 90bd2a5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/frontend/src/features/Discovery/DiscoveryTable/TableRenderers/RowDetailPanel.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ import React from 'react';
22
import { Box, Text } from '@mantine/core';
33
import HighlightSearchTerm from '../SearchHighlighting/HighlightSearchTerm';
44
import { MRT_Row, MRT_RowData } from 'mantine-react-table';
5-
import { DiscoveryIndexConfig } from '../../types';
65
import _ from 'lodash';
76
import RowDetailPanelTags from './RowDetailPanelTags';
87
import { useDiscoveryContext } from '../../DiscoveryProvider';
9-
import { OnChangeFn } from '@tanstack/table-core';
108

119
interface RowDetailPanelProps {
1210
row: MRT_Row<MRT_RowData>;
@@ -27,7 +25,7 @@ const RowDetailPanel = ({ row, searchTerm }: RowDetailPanelProps) => {
2725
{HighlightSearchTerm(studyPreviewData, searchTerm)}
2826
</Text>
2927
</Box>
30-
<RowDetailPanelTags rowTags={row.original.tags} />;
28+
<RowDetailPanelTags rowTags={row.original.tags} />
3129
</>
3230
);
3331
} else {

0 commit comments

Comments
 (0)