Skip to content

Commit 022ca7c

Browse files
committed
fix: hide 'alpha' with not so good styling
1 parent 77c3971 commit 022ca7c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

app/components/AppHeader.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ onKeyStroke(
116116
<AppLogo class="w-8 h-8 rounded-lg" />
117117
<span>npmx</span>
118118
<sup class="text-sm ms--1.5 italic text-fg-muted">
119-
{{ env === 'release' ? 'alpha' : env }}
119+
<!-- TODO: improve styling and show 'alpha' until March 3 annoucement -->
120+
{{ env === 'release' ? '' : env }}
120121
</sup>
121122
</NuxtLink>
122123
</div>

app/pages/index.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ defineOgImageComponent('Default', {
5454
class="w-12 h-12 -ms-3 sm:w-20 sm:h-20 sm:-ms-5 md:w-24 md:h-24 md:-ms-6 rounded-2xl sm:rounded-3xl"
5555
/>
5656
<span class="pb-4">npmx</span>
57-
<sup class="text-3xl italic text-fg-muted">{{ env === 'release' ? 'alpha' : env }}</sup>
57+
<sup class="text-3xl italic text-fg-muted">
58+
<!-- TODO: improve styling and show 'alpha' until March 3 annoucement -->
59+
{{ env === 'release' ? '' : env }}
60+
</sup>
5861
</h1>
5962

6063
<p

0 commit comments

Comments
 (0)