Skip to content

Commit a2c81bf

Browse files
committed
Rename 'Blocked Pubkeys' to 'Access Control' for improved UX
1 parent e30dc25 commit a2c81bf

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/blocked-pubkeys/BlockedPubkeys.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export const BlockedPubkeys: React.FC = () => {
3434
<Space direction="vertical" size="large" style={{ width: '100%' }}>
3535
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
3636
<div>
37-
<Title level={4}>Pubkey Management</Title>
37+
<Title level={4}>Access Control</Title>
3838
<Text type="secondary">
39-
Block users from connecting to your relay and view flagged pubkeys
39+
Control access to your relay and manage flagged pubkeys
4040
</Text>
4141
</div>
4242
<BaseButton
@@ -57,13 +57,13 @@ export const BlockedPubkeys: React.FC = () => {
5757
active={activeView === 'blocked'}
5858
onClick={() => setActiveView('blocked')}
5959
>
60-
Blocked Pubkeys
60+
Blocked Access
6161
</S.NavLink>
6262
<S.NavLink
6363
active={activeView === 'flagged'}
6464
onClick={() => setActiveView('flagged')}
6565
>
66-
Flagged Pubkeys
66+
Flagged Access
6767
</S.NavLink>
6868
</S.NavContainer>
6969

src/components/layouts/main/sider/sidebarNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const useSidebarNavigation = (): SidebarNavigationItem[] => {
3232
icon: <StorageSettingsIcon />,
3333
},
3434
{
35-
title: 'Blocked Pubkeys',
35+
title: 'Access Control',
3636
key: 'blocked-pubkeys',
3737
url: '/blocked-pubkeys',
3838
icon: <StopOutlined />,

0 commit comments

Comments
 (0)