We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4061b3 commit 8d9fa5cCopy full SHA for 8d9fa5c
app/components/LandingLogo.vue
@@ -12,9 +12,9 @@ onPrehydrate(el => {
12
month: '2-digit',
13
day: '2-digit',
14
}).format(new Date())
15
- const isAprilFirst = date === '04/01'
+ const isTKawaii = date === '03/31'
16
17
- if (!isKawaii && !isAprilFirst) return
+ if (!isKawaii && !isTKawaii) return
18
19
const normalLogo = el.querySelector<HTMLElement>('#npmx-index-h1-logo-normal')
20
const kawaiiLogo = el.querySelector<HTMLElement>('#npmx-index-h1-logo-kawaii')
@@ -24,7 +24,7 @@ onPrehydrate(el => {
24
25
if (!normalLogo || !kawaiiLogo || !tkawaiiLogo || !logoEnv || !logoTagline) return
26
27
- if (isAprilFirst) {
+ if (isTKawaii) {
28
tkawaiiLogo.style.display = 'block'
29
} else {
30
kawaiiLogo.style.display = 'block'
0 commit comments