diff --git a/blog/2026-07-04-nushell_v0_114_0.md b/blog/2026-07-04-nushell_v0_114_0.md
index f23eb56cbe0..004bb64482c 100644
--- a/blog/2026-07-04-nushell_v0_114_0.md
+++ b/blog/2026-07-04-nushell_v0_114_0.md
@@ -361,9 +361,6 @@ Let's see how this works with an example:
`$in` variable is now typed based on the pipeline input type of the surrounding expression.
-
-
-
```ansi:no-line-numbers title="Before. Error is caught at runtime."
Error: [31mnu::shell::operator_incompatible_types[0m
@@ -377,9 +374,6 @@ Error: [31mnu::shell::operator_incompatible_types[0m
╰────
```
-
-
-
```ansi:no-line-numbers title="After. Error is caught at parse time."
Error: [31mnu::parser::operator_incompatible_types[0m
@@ -393,9 +387,6 @@ Error: [31mnu::parser::operator_incompatible_types[0m
╰────
```
-
-
-
#### Better type inference of `let` bindings
`let` bindings in the middle of a pipeline, or at the end of it, are now properly typed based ont the pipeline input type.