Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
theiliad committed Jul 28, 2023
1 parent cc52737 commit 547b819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/graphs/gauge-segmented.ts
Expand Up @@ -80,7 +80,7 @@ export class EXPERIMENTAL_SegmentedGauge extends Component {
// })
// )
// .style('fill', () => getProperty(this.getOptions(), 'color', 'scale', 'value'))
.attr('fill', function (d: any, i) {
.attr('fill', function (_, i) {
if (i === 0) {
return 'var(--cds-support-success, #42be65)'
} else if (i === 1) {
Expand Down

0 comments on commit 547b819

Please sign in to comment.