File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ const DeploymentSettingsNavigation: FC<DeploymentSettingsNavigationProps> = ({
148
148
Users
149
149
</ SidebarNavSubItem >
150
150
) }
151
- < Stack direction = { "row" } alignItems = { "center" } css = { { gap : 0 } } >
151
+ < Stack direction = "row" alignItems = "center" css = { { gap : 0 } } >
152
152
< SidebarNavSubItem href = "notifications" >
153
153
Notifications
154
154
</ SidebarNavSubItem >
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ export const NotificationsPage: FC = () => {
99
99
title = "Notifications"
100
100
description = "Configure your notification preferences. Icons on the right of each notification indicate delivery method, either SMTP or Webhook."
101
101
layout = "fluid"
102
+ featureStage = "beta"
102
103
>
103
104
{ ready ? (
104
105
< Stack spacing = { 4 } >
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import {
15
15
import { UserAvatar } from "components/UserAvatar/UserAvatar" ;
16
16
import { useDashboard } from "modules/dashboard/useDashboard" ;
17
17
import type { FC } from "react" ;
18
+ import { FeatureStageBadge } from "components/FeatureStageBadge/FeatureStageBadge" ;
18
19
19
20
interface SidebarProps {
20
21
user : User ;
@@ -58,7 +59,7 @@ export const Sidebar: FC<SidebarProps> = ({ user }) => {
58
59
Tokens
59
60
</ SidebarNavItem >
60
61
< SidebarNavItem href = "notifications" icon = { NotificationsIcon } >
61
- Notifications
62
+ Notifications < FeatureStageBadge contentType = "beta" size = "sm" />
62
63
</ SidebarNavItem >
63
64
</ BaseSidebar >
64
65
) ;
You can’t perform that action at this time.
0 commit comments