Skip to content

Commit 2c0d25e

Browse files
committed
fix(init): remove 2-col width reduction on StatusScreen
StatusScreen was receiving width-2 which made it narrower than its container, creating a visible left offset.
1 parent bcfb65c commit 2c0d25e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/init/ui/ink-app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function App({ store }: AppProps): React.ReactNode {
193193
summary={snapshot.summary}
194194
terminalRows={rows}
195195
tipIndex={snapshot.tipIndex}
196-
width={width - 2}
196+
width={width}
197197
/>
198198
) : (
199199
<FilesScreen

0 commit comments

Comments
 (0)