Skip to content

Commit 10ec661

Browse files
committed
🤖 Fix formatting
1 parent 8f8401d commit 10ec661

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

.storybook/mocks/version.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// This ensures consistent snapshots in Chromatic
33
// Apple's classic demo time: 9:41 AM on January 24, 2024
44
export const VERSION = {
5-
git_commit: 'abc1234',
6-
git_describe: 'v1.0.0',
7-
buildTime: '2024-01-24T17:41:00Z', // 9:41 AM PST
5+
git_commit: "abc1234",
6+
git_describe: "v1.0.0",
7+
buildTime: "2024-01-24T17:41:00Z", // 9:41 AM PST
88
};
99

src/App.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { FrontendWorkspaceMetadata } from "./types/workspace";
66
import type { IPCApi } from "./types/ipc";
77

88
// Stable timestamp for visual testing (Apple demo time: Jan 24, 2024, 9:41 AM PST)
9-
const STABLE_TIMESTAMP = new Date('2024-01-24T09:41:00-08:00').getTime();
9+
const STABLE_TIMESTAMP = new Date("2024-01-24T09:41:00-08:00").getTime();
1010

1111
// Mock window.api for App component
1212
function setupMockAPI(options: {

src/components/Messages/AssistantMessage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { DisplayedMessage } from "@/types/message";
44
import { action } from "@storybook/addon-actions";
55

66
// Stable timestamp for visual testing (Apple demo time: Jan 24, 2024, 9:41 AM PST)
7-
const STABLE_TIMESTAMP = new Date('2024-01-24T09:41:00-08:00').getTime();
7+
const STABLE_TIMESTAMP = new Date("2024-01-24T09:41:00-08:00").getTime();
88

99
const clipboardWriteText = (data: string) => {
1010
action("copy-text")(data);

src/components/Messages/ReasoningMessage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ReasoningMessage } from "./ReasoningMessage";
33
import type { DisplayedMessage } from "@/types/message";
44

55
// Stable timestamp for visual testing (Apple demo time: Jan 24, 2024, 9:41 AM PST)
6-
const STABLE_TIMESTAMP = new Date('2024-01-24T09:41:00-08:00').getTime();
6+
const STABLE_TIMESTAMP = new Date("2024-01-24T09:41:00-08:00").getTime();
77

88
const meta = {
99
title: "Messages/ReasoningMessage",

src/components/Messages/StreamErrorMessage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { DisplayedMessage } from "@/types/message";
44
import type { StreamErrorType } from "@/types/errors";
55

66
// Stable timestamp for visual testing (Apple demo time: Jan 24, 2024, 9:41 AM PST)
7-
const STABLE_TIMESTAMP = new Date('2024-01-24T09:41:00-08:00').getTime();
7+
const STABLE_TIMESTAMP = new Date("2024-01-24T09:41:00-08:00").getTime();
88

99
const meta = {
1010
title: "Messages/StreamErrorMessage",

src/components/Messages/UserMessage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { UserMessage } from "./UserMessage";
44
import type { DisplayedMessage } from "@/types/message";
55

66
// Stable timestamp for visual testing (Apple demo time: Jan 24, 2024, 9:41 AM PST)
7-
const STABLE_TIMESTAMP = new Date('2024-01-24T09:41:00-08:00').getTime();
7+
const STABLE_TIMESTAMP = new Date("2024-01-24T09:41:00-08:00").getTime();
88

99
const clipboardWriteText = (data: string) => {
1010
action("copy-text")(data);

src/components/TitleBar.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type Story = StoryObj<typeof meta>;
1919

2020
/**
2121
* The TitleBar shows the cmux version and build date.
22-
*
22+
*
2323
* Note: The version displayed is generated at build time from git information.
2424
* In Storybook, you'll see the current development version.
2525
*/
@@ -35,4 +35,3 @@ export const WithTelemetryDisabled: Story = {
3535
},
3636
},
3737
};
38-

0 commit comments

Comments
 (0)