revert: "feat: display i18n text on SSR"
This reverts commit cafc995dde
.
This commit is contained in:
parent
e9dccc9ef5
commit
a41a31732b
4 changed files with 11 additions and 10 deletions
|
@ -10,12 +10,12 @@ const tabs = $computed(() => [
|
|||
{
|
||||
name: 'all',
|
||||
to: '/notifications',
|
||||
display: t('tab.notifications_all'),
|
||||
display: isHydrated.value ? t('tab.notifications_all') : '',
|
||||
},
|
||||
{
|
||||
name: 'mention',
|
||||
to: '/notifications/mention',
|
||||
display: t('tab.notifications_mention'),
|
||||
display: isHydrated.value ? t('tab.notifications_mention') : '',
|
||||
},
|
||||
] as const)
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue