Skip to content

Commit

Permalink
fix(progress-indicator): correct prefix value from context (#9736)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
tay1orjones and kodiakhq[bot] authored Sep 24, 2021
1 parent d6884e0 commit b510ad9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export class ProgressIndicator extends Component {
spaceEqually,
...other
} = this.props;
const prefix = this.prefix;
const prefix = this.context;
const classes = classnames({
[`${prefix}--progress`]: true,
[`${prefix}--progress--vertical`]: vertical,
Expand Down

0 comments on commit b510ad9

Please sign in to comment.