Skip to content

Commit de86dde

Browse files
minsoo-webclaude
andcommitted
fix: resolve CI failures (fmt + typos config for ratatui)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c1f0571 commit de86dde

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

_typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[default.extend-words]
2+
ratatui = "ratatui"

src/preview/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ pub fn select_theme_with_preview(
123123
}
124124

125125
// Ctrl+C → return None (exit code 130 handled by caller)
126-
if key.modifiers.contains(KeyModifiers::CONTROL)
127-
&& key.code == KeyCode::Char('c')
128-
{
126+
if key.modifiers.contains(KeyModifiers::CONTROL) && key.code == KeyCode::Char('c') {
129127
return Ok(None);
130128
}
131129

0 commit comments

Comments
 (0)