diff --git a/frontend/src/composables/page-title.ts b/frontend/src/composables/page-title.ts index df3d5b72fa6..d3adb441f4d 100644 --- a/frontend/src/composables/page-title.ts +++ b/frontend/src/composables/page-title.ts @@ -6,7 +6,7 @@ import { isNil } from '@/utils/validation'; /** * This composable handles the page title of the application. */ -const DEFAULT_PAGE_TITLE = 'Jellyfin Vue'; +const DEFAULT_PAGE_TITLE = 'Sluthub Vue'; const _title = shallowRef(); const _fullTitle = computed(() => _title.value ? `${_title.value.trim()} | ${DEFAULT_PAGE_TITLE}` : DEFAULT_PAGE_TITLE); diff --git a/frontend/src/plugins/router/index.ts b/frontend/src/plugins/router/index.ts index de2c4bc5b3c..a337d85b863 100644 --- a/frontend/src/plugins/router/index.ts +++ b/frontend/src/plugins/router/index.ts @@ -61,17 +61,6 @@ router.back = (): ReturnType => { ); }; -/** - * Handle page title changes - */ -const pageTitle = computed(() => { - const title = router.currentRoute.value.meta.title?.trim(); - - return title ? `${title} | Sluthub` : 'Sluthub'; -}); - -useTitle(pageTitle); - /** * Re-run the middleware pipeline when the user logs out or state is cleared */