diff --git a/components/notification/NotificationCard.vue b/components/notification/NotificationCard.vue index 1c5d540e..f906f9c5 100644 --- a/components/notification/NotificationCard.vue +++ b/components/notification/NotificationCard.vue @@ -4,12 +4,17 @@ import type { Notification } from 'masto' const { notification } = defineProps<{ notification: Notification }>() + +const nuxt = useNuxtApp() +function click() { + nuxt.$rememberAccountPosition(getAccountRoute(notification.account).fullPath) +}