We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55879a6 commit 048a016Copy full SHA for 048a016
ui/src/components/ExtensionComponent/AuthedDashboard.js
@@ -108,8 +108,17 @@ const LaunchKanvasSection = ({ isDarkTheme }) => {
108
}}
109
>
110
<MuiBox display={"flex"} gap={2} alignItems="center">
111
- {launching && <CircularProgress color="#eee" size="24" />}
112
- <StyledLink style={{ color: "white" }}>Launch Kanvas</StyledLink>
+ {launching && (
+ <CircularProgress
113
+ sx={{
114
+ color: "#fff",
115
+ }}
116
+ size="24"
117
+ />
118
+ )}
119
+ <StyledLink style={{ color: "white" }}>
120
+ {launching ? "Launching" : "Launch"} Kanvas
121
+ </StyledLink>
122
</MuiBox>
123
</StyledButton>
124
</AccountDiv>
0 commit comments