Skip to content

Commit 992cb87

Browse files
hi-ogawaOpenCode
andcommitted
fix: capitalize audio status text
Co-authored-by: OpenCode <noreply@opencode.ai>
1 parent f896f2e commit 992cb87

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/app/e2e/separate.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ test("separates a clip fully client-side", async ({ page }) => {
2323
page.getByTestId("model-file-slot").getByText("Ready"),
2424
).toHaveCount(2);
2525
await page.setInputFiles("#file", FIXTURE);
26-
await expect(page.locator("#status")).toContainText("decoded: 2.00s");
26+
await expect(page.locator("#status")).toContainText("Decoded: 2.00s");
2727

2828
await page.click("#run");
2929
await expect(

packages/app/src/app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ export function App() {
147147
? `Done in ${(handleRunMutation.data.durationMs / 1000).toFixed(1)}s`
148148
: ""
149149
: handleAudioFileMutation.isPending
150-
? "decoding..."
150+
? "Decoding..."
151151
: decoded
152-
? `decoded: ${decoded.duration.toFixed(2)}s, ${decoded.numberOfChannels}ch @${decoded.sampleRate / 1000}k`
152+
? `Decoded: ${decoded.duration.toFixed(2)}s, ${decoded.numberOfChannels}ch @${decoded.sampleRate / 1000}k`
153153
: "";
154154

155155
return (

0 commit comments

Comments
 (0)