Files
Nicolas Gorga c5b919850c fix(dashboard): filter feed channel notifications in admin dashboard (#14549)
## Summary

**What** — What changes are introduced in this PR?

Filter only `channel=feed` notifications in Admin dashboard.

**Why** — Why are these changes relevant or necessary?  

Otherwise, other channel notifications are incorrectly fetched and break the view, since they don't have the expected content format to render in the component.

**How** — How have these changes been implemented?

Added `channel=feed` to the API call.

**Testing** — How have these changes been tested, or how can the reviewer test the feature?

Validated only feed notifications are retrieved at runtime.

---

## Examples

Provide examples or code snippets that demonstrate how this feature works, or how it can be used in practice.  
This helps with documentation and ensures maintainers can quickly understand and verify the change.

```ts
// Example usage
```

---

## Checklist

Please ensure the following before requesting a review:

- [x] I have added a **changeset** for this PR
    - Every non-breaking change should be marked as a **patch**
    - To add a changeset, run `yarn changeset` and follow the prompts
- [ ] The changes are covered by relevant **tests**
- [x] I have verified the code works as intended locally
- [x] I have linked the related issue(s) if applicable

---

## Additional Context

Add any additional context, related issues, or references that might help the reviewer understand this PR.

closes CORE-1363
2026-01-15 15:00:51 +00:00
..
2026-01-09 12:52:13 +01:00
2026-01-09 12:52:13 +01:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list