Skip to content

Commit 350e5ae

Browse files
Remove label prop from DeterminateProgressRing
1 parent 429f9a1 commit 350e5ae

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

extensions/ql-vscode/src/view/common/DeterminateProgressRing.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { styled } from "styled-components";
33

44
type Props = {
55
percent: number;
6-
label?: string;
76
};
87

98
const Circle = styled.div`
@@ -33,10 +32,7 @@ const progressSegments = 44;
3332
// See https://github.com/microsoft/fast/blob/21c210f2164c5cf285cade1a328460c67e4b97e6/packages/web-components/fast-foundation/src/progress-ring/progress-ring.template.ts
3433
// Once the determinate progress ring is available in the VSCode webview UI toolkit, we should use that instead
3534

36-
export const DeterminateProgressRing = ({
37-
percent,
38-
label = "Loading...",
39-
}: Props) => (
35+
export const DeterminateProgressRing = ({ percent }: Props) => (
4036
<Circle
4137
role="progressbar"
4238
aria-valuemin={0}

0 commit comments

Comments
 (0)