Skip to content

Commit 5e6c91b

Browse files
committed
fix: fix dev artifact in prod
1 parent 187c141 commit 5e6c91b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/hyperrat/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl Widget for Link<'_> {
135135
for offset in 1..label_width {
136136
let x = area.x + offset as u16;
137137
if let Some(cell) = buf.cell_mut(Position::new(x, area.y)) {
138-
cell.set_symbol("s");
138+
cell.set_symbol(" ");
139139
cell.set_diff_option(CellDiffOption::Skip);
140140
cell.set_style(style);
141141
}

0 commit comments

Comments
 (0)