From 497d249de699573efabbce290a0d0c22d9288cb0 Mon Sep 17 00:00:00 2001 From: Taylor Jones Date: Fri, 24 Sep 2021 10:23:22 -0500 Subject: [PATCH] fix(progress-indicator): correct prefix value from context --- .../react/src/components/ProgressIndicator/ProgressIndicator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/components/ProgressIndicator/ProgressIndicator.js b/packages/react/src/components/ProgressIndicator/ProgressIndicator.js index 4d5ac569a02c..740d8a22c37d 100644 --- a/packages/react/src/components/ProgressIndicator/ProgressIndicator.js +++ b/packages/react/src/components/ProgressIndicator/ProgressIndicator.js @@ -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,