Skip to content

Commit 48ff3b4

Browse files
fix: small updates to verbiage (#746)
fixing a typo and some other small adjustment
1 parent 2a56a60 commit 48ff3b4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/gensx/src/commands/build.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export function BuildWorkflowUI({ file, options }: Props) {
117117
)}
118118

119119
{phase === "bundling" && (
120-
<LoadingSpinner message="Building workflows using Docker..." />
120+
<LoadingSpinner message="Building workflows using docker..." />
121121
)}
122122

123123
{phase === "generatingSchema" && (

packages/gensx/src/commands/deploy.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export const DeployUI: React.FC<Props> = ({ file, options }) => {
185185
)}
186186

187187
{phase === "building" && (
188-
<LoadingSpinner message="Building workflow using docker..." />
188+
<LoadingSpinner message="Building workflows using docker..." />
189189
)}
190190

191191
{phase === "deploying" && (
@@ -207,7 +207,7 @@ export const DeployUI: React.FC<Props> = ({ file, options }) => {
207207
<Spinner type="dots" />{" "}
208208
<Text dimColor>
209209
Deploying project <Text color="cyan">{projectName}</Text> to
210-
GenSX Cloud <Text dimColor>(Environment:</Text>{" "}
210+
GenSX Cloud <Text dimColor>(environment:</Text>{" "}
211211
<Text color="cyan" dimColor>
212212
{resolvedEnv}
213213
</Text>

packages/gensx/tests/commands/deploy.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,12 @@ hasCompletedFirstTimeSetup = false
360360
);
361361

362362
// Wait for the build phase to start
363-
await waitForText(lastFrame, /Building workflow using docker\.\.\./);
363+
await waitForText(lastFrame, /Building workflows using docker\.\.\./);
364364

365365
// Check for spinner indicator
366366
const frame = lastFrame();
367367
expect(frame).toBeTruthy();
368-
expect(frame?.includes("Building workflow using docker...")).toBe(true);
368+
expect(frame?.includes("Building workflows using docker...")).toBe(true);
369369
});
370370

371371
it("should show error when build fails", async () => {

0 commit comments

Comments
 (0)