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 af63f88 commit 1e533ebCopy full SHA for 1e533eb
components/dashboard/src/workspaces/CreateWorkspacePage.tsx
@@ -255,7 +255,7 @@ export function CreateWorkspacePage() {
255
onClick={onClickCreate}
256
autoFocus={true}
257
size="block"
258
- loading={isStarting || isLoading}
+ loading={isStarting}
259
disabled={
260
!contextURL ||
261
contextURL.length === 0 ||
@@ -264,7 +264,7 @@ export function CreateWorkspacePage() {
264
!!workspaceContext.error
265
}
266
>
267
- {isLoading ? "Loading ..." : isStarting ? "Creating Workspace ..." : "New Workspace"}
+ {isStarting ? "Creating Workspace ..." : "New Workspace"}
268
</Button>
269
</div>
270
{existingWorkspaces.length > 0 && (
0 commit comments