Skip to content

Commit 2d740c8

Browse files
committed
Apply prettier formatting
CI's format:check caught two unformatted files from the prior commit. No behaviour change — just whitespace and line wrapping. https://claude.ai/code/session_015mACScqpz9U8NmhpDorPhA
1 parent 7932b9d commit 2d740c8

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

src/shared/constants.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,7 @@ export const OPUS_EFFORTS = [
5252
'xhigh',
5353
'max',
5454
] as const satisfies readonly Effort[];
55-
export const SONNET_EFFORTS = [
56-
'low',
57-
'medium',
58-
'high',
59-
'max',
60-
] as const satisfies readonly Effort[];
55+
export const SONNET_EFFORTS = ['low', 'medium', 'high', 'max'] as const satisfies readonly Effort[];
6156
export const HAIKU_EFFORTS = [] as const satisfies readonly Effort[];
6257

6358
// Default effort pre-selected when each model is chosen. Haiku is null →

src/web/components/VariantColumn.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { Fragment, useState, type JSX } from 'react';
22
import type { ColumnConfig } from '@shared/schemas/session.js';
33
import type { ColumnStatus, Mode } from '@shared/schemas/types.js';
4-
import {
5-
defaultEffortForModel,
6-
effortLevelsForModel,
7-
type Effort,
8-
} from '@shared/constants.js';
4+
import { defaultEffortForModel, effortLevelsForModel, type Effort } from '@shared/constants.js';
95
import type { JudgeFile } from '@shared/schemas/judge.js';
106
import type { RunConfig, TranscriptFile, OutputFile } from '@shared/schemas/run.js';
117
import type { LocalVariant, LocalVariantsResponse } from '@shared/schemas/localVariants.js';

0 commit comments

Comments
 (0)