Revert "notification_utils.js"

This reverts commit 67059addfe64d3cf531a4797a3b9d38174f622e4.
This commit is contained in:
Henry Jameson 2026-02-13 14:34:35 +02:00
commit 76d3ec1b39
2 changed files with 11 additions and 17 deletions

View file

@ -3,7 +3,6 @@ import { muteFilterHits } from '../status_parser/status_parser.js'
import { useAnnouncementsStore } from 'src/stores/announcements'
import { useI18nStore } from 'src/stores/i18n.js'
import { useSyncConfigStore } from 'src/stores/sync_config.js'
import FaviconService from 'src/services/favicon_service/favicon_service.js'
@ -20,7 +19,8 @@ export const notificationsFromStore = (store) => store.state.notifications.data
export const visibleTypes = (store) => {
// When called from within a module we need rootGetters to access wider scope
// however when called from a component (i.e. this.$store) we already have wider scope
const { notificationVisibility } = useSyncConfigStore().mergedConfig
const rootGetters = store.rootGetters || store.getters
const { notificationVisibility } = rootGetters.mergedConfig
return [
notificationVisibility.likes && 'like',