Skip to content

Commit c6a07ef

Browse files
committed
Removed stray comment
1 parent c528e0b commit c6a07ef

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

apps/webapp/app/components/code/TSQLResultsTable.tsx

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ const SAMPLE_SIZE = 100; // Number of rows to sample for width calculation
6060
// Type for row data
6161
type RowData = Record<string, unknown>;
6262

63-
/**
64-
* Fuzzy filter function using match-sorter ranking
65-
*/
6663
/**
6764
* Get the formatted display string for a value based on its column type
6865
* This mirrors the formatting logic in CellValue component
@@ -163,10 +160,10 @@ const fuzzyFilter: FilterFn<RowData> = (row, columnId, value, addMeta) => {
163160
cellValue === null
164161
? "NULL"
165162
: cellValue === undefined
166-
? ""
167-
: typeof cellValue === "object"
168-
? JSON.stringify(cellValue)
169-
: String(cellValue);
163+
? ""
164+
: typeof cellValue === "object"
165+
? JSON.stringify(cellValue)
166+
: String(cellValue);
170167

171168
// Build searchable strings - formatted value (if we have column metadata)
172169
const formattedValue = meta?.outputColumn
@@ -493,8 +490,8 @@ function CellValue({
493490
const status = isTaskRunStatus(value)
494491
? value
495492
: isRunFriendlyStatus(value)
496-
? runStatusFromFriendlyTitle(value)
497-
: undefined;
493+
? runStatusFromFriendlyTitle(value)
494+
: undefined;
498495
if (status) {
499496
if (hovered) {
500497
return (

0 commit comments

Comments
 (0)