Merge pull request #64 from cshaptx4869/patch-33

fix(dashboard): 🐛 修复eslint报错
This commit is contained in:
Ray Hao 2024-03-25 21:25:34 +08:00 committed by GitHub
commit 3e8e366a5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ const greetings = computed(() => {
return "下午好," + userStore.user.nickname + "";
} else if (hours >= 18 && hours < 24) {
return "晚上好," + userStore.user.nickname + "";
} else if (hours >= 0 && hours < 6) {
} else {
return "偷偷向银河要了一把碎星,只等你闭上眼睛撒入你的梦中,晚安🌛!";
}
});