function removeNotification()

in web/src/components/layout/notifications/notifications.logic.ts [44:46]


  function removeNotification(id: string): void {
    setNotifications((oldNotifications) => oldNotifications.filter(n => n.id !== id));
  }