Skip to content

Commit 6889fff

Browse files
committed
fixed type error
1 parent 4998a31 commit 6889fff

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/webapp/app/presenters/v3/LogDetailPresenter.server.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ export class LogDetailPresenter {
3636
);
3737
}
3838

39-
const isClickhouseV2 = store === "clickhouse_v2";
40-
const queryBuilder = isClickhouseV2
41-
? this.clickhouse.taskEventsV2.logDetailQueryBuilder()
42-
: this.clickhouse.taskEvents.logDetailQueryBuilder();
39+
const queryBuilder = this.clickhouse.taskEventsV2.logDetailQueryBuilder();
4340

4441
// Required filters - spanId, traceId, and startTime uniquely identify the log
4542
// Multiple events can share the same spanId (span, span events, logs), so startTime is needed

0 commit comments

Comments
 (0)