Skip to content

Commit afef361

Browse files
committed
Format overlays.test.ts choices array for Prettier
1 parent 0d0266c commit afef361

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/tui/overlays.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,11 @@ describe("operator question overlay", () => {
233233
"Should we proceed with the destructive reset of the working tree?",
234234
...Array.from({ length: 24 }, (_, i) => `Context line ${i + 1}.`),
235235
].join("\n");
236-
const choices = ["Cancel — keep working tree", "Allow this once", "Allow for this session"] as const;
236+
const choices = [
237+
"Cancel — keep working tree",
238+
"Allow this once",
239+
"Allow for this session",
240+
] as const;
237241
const size = { width: 80, height: 40 } as const;
238242

239243
async function bodyLineCount(mode: "inset" | "full_shell"): Promise<{

0 commit comments

Comments
 (0)