From 3b79859aa420f52d46102c515c8fe9495fe8b0c8 Mon Sep 17 00:00:00 2001 From: Jack Stevenson Date: Wed, 12 May 2021 18:18:21 +1000 Subject: [PATCH] fix(ProgressBar): Don't use deprecated prop for CircularProgres (#186) This gets rid of the warning message printed in the chrome console: ``` Warning: Failed prop type: Material-UI: `variant="static"` was deprecated. Use `variant="determinate"` instead. ``` --- src/components/ProgressBar/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ProgressBar/index.tsx b/src/components/ProgressBar/index.tsx index 12232d1c..71776f39 100644 --- a/src/components/ProgressBar/index.tsx +++ b/src/components/ProgressBar/index.tsx @@ -139,12 +139,12 @@ const CircularProgressWithLabel: React.FunctionComponent<