Skip to content

Commit

Permalink
fix(web): use pretty titles
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Feb 28, 2025
1 parent d280abf commit 61217ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/lib/Editor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
class={`max-w-full w-full ${superSmall ? 'justify-center' : 'justify-between'} flex-row ${small ? '' : 'hidden'}`}
>
<div class={superSmall ? 'hidden' : ''}>
<h1 class={`font-bold p-0 text-base`}>{lints[focused].lint_kind()}</h1>
<h1 class={`font-bold p-0 text-base`}>{lints[focused].lint_kind_pretty()}</h1>
<p class={`p-0 text-sm`}>{lints[focused].message()}</p>
</div>
<div class="flex flex-row">
Expand Down

0 comments on commit 61217ab

Please sign in to comment.