Skip to content

Commit 8d3676a

Browse files
committed
chore: oxfmt the lines the removed comments let collapse
1 parent f9eb9c0 commit 8d3676a

3 files changed

Lines changed: 2 additions & 8 deletions

File tree

apps/webapp/app/components/dashboard-agent/chat-layout.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,5 @@ describe("chat-layout enforcement", () => {
101101
expect(source).toContain("bg-background-raised");
102102
expect(source).not.toMatch(/bg-indigo-\d/);
103103
});
104-
105104
});
106105
});

apps/webapp/app/components/dashboard-agent/dashboardAgentLauncher.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ export function DashboardAgentLauncher() {
6868
Ask Trigger
6969
</Button>
7070
{hasUnread && (
71-
<span
72-
className="absolute -right-0.5 -top-0.5 size-2 rounded-full bg-indigo-500 ring-2 ring-background-dimmed"
73-
/>
71+
<span className="absolute -right-0.5 -top-0.5 size-2 rounded-full bg-indigo-500 ring-2 ring-background-dimmed" />
7472
)}
7573
</span>
7674
}

internal-packages/dashboard-agent/src/watch-tick.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -925,10 +925,7 @@ describe("the resolution model", () => {
925925
});
926926

927927
it("only a pending or unavailable boundary check becomes window_completed", async () => {
928-
for (const body of [
929-
{ result: "pending" as const, facts: { pending: 7 } },
930-
undefined,
931-
]) {
928+
for (const body of [{ result: "pending" as const, facts: { pending: 7 } }, undefined]) {
932929
const { store, calls } = fakeStore(watchRow({ tickCount: 12 }));
933930
const { fetch } = fakeFetch(() =>
934931
body ? { body } : { status: 500, body: { error: "clickhouse is down" } }

0 commit comments

Comments
 (0)