Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
povilasv committed Nov 12, 2024
1 parent 843b04b commit 94cec89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk-metrics/src/state/MetricCollector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class MetricCollector implements MetricProducer {
* collector.
*/
selectCardinalityLimit(instrumentType: InstrumentType): number {
return this._metricReader.selectCardinalityLimit.?(instrumentType) ?? 2000;
return this._metricReader.selectCardinalityLimit?.(instrumentType) ?? 2000;
}
}

Expand Down

0 comments on commit 94cec89

Please sign in to comment.