Skip to content

Commit ca01c03

Browse files
committed
lint
1 parent c3b2e47 commit ca01c03

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

apps/twig/src/renderer/features/message-editor/components/ModeIndicatorInput.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { useCwd } from "@features/sidebar/hooks/useCwd";
21
import type { ExecutionMode } from "@features/sessions/stores/sessionStore";
2+
import { useCwd } from "@features/sidebar/hooks/useCwd";
33
import { Circle, Pause, Pencil, ShieldCheck } from "@phosphor-icons/react";
44
import { Flex, Text } from "@radix-ui/themes";
55
import { trpcVanilla } from "@renderer/trpc";
@@ -91,7 +91,8 @@ export function ModeIndicatorInput({ mode, taskId }: ModeIndicatorInputProps) {
9191
>
9292
<Circle size={4} weight="fill" style={{ margin: "0 4px" }} />
9393
<span style={{ color: "var(--gray-11)" }}>
94-
{diffStats.filesChanged} {diffStats.filesChanged === 1 ? "file" : "files"}
94+
{diffStats.filesChanged}{" "}
95+
{diffStats.filesChanged === 1 ? "file" : "files"}
9596
</span>
9697
<span style={{ color: "var(--green-9)" }}>
9798
+{diffStats.linesAdded}

apps/twig/src/renderer/features/sessions/components/GeneratingIndicator.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,12 @@ export function GeneratingIndicator({ startedAt }: GeneratingIndicatorProps) {
5353
<Text size="1" color="gray">
5454
(Esc to interrupt
5555
</Text>
56-
<Circle size={4} weight="fill" className="text-gray-9" style={{ margin: "0 2px" }} />
56+
<Circle
57+
size={4}
58+
weight="fill"
59+
className="text-gray-9"
60+
style={{ margin: "0 2px" }}
61+
/>
5762
<Text
5863
size="1"
5964
color="gray"

0 commit comments

Comments
 (0)