diff --git a/.changeset/cold-garlics-care.md b/.changeset/cold-garlics-care.md
new file mode 100644
index 0000000000..960ebe6bd4
--- /dev/null
+++ b/.changeset/cold-garlics-care.md
@@ -0,0 +1,5 @@
+---
+'@backstage/plugin-notifications': patch
+---
+
+Fixed missing app context when rendering the notifications view
diff --git a/plugins/notifications/src/alpha.tsx b/plugins/notifications/src/alpha.tsx
index 6d32150c35..ca4be58209 100644
--- a/plugins/notifications/src/alpha.tsx
+++ b/plugins/notifications/src/alpha.tsx
@@ -23,6 +23,7 @@ import {
} from '@backstage/frontend-plugin-api';
import { rootRouteRef } from './routes';
import {
+ compatWrapper,
convertLegacyRouteRef,
convertLegacyRouteRefs,
} from '@backstage/core-compat-api';
@@ -33,9 +34,9 @@ const page = PageBlueprint.make({
path: '/notifications',
routeRef: convertLegacyRouteRef(rootRouteRef),
loader: () =>
- import('./components/NotificationsPage').then(m => (
-
- )),
+ import('./components/NotificationsPage').then(m =>
+ compatWrapper(),
+ ),
},
});