@@ -7,7 +7,7 @@ import { AiFillSecurityScan } from "@react-icons/all-files/ai/AiFillSecurityScan
7
7
import { AiFillApi } from "@react-icons/all-files/ai/AiFillApi"
8
8
import { HiShieldCheck } from "@react-icons/all-files/hi/HiShieldCheck"
9
9
import { IconType } from "@react-icons/all-files/lib"
10
- import { RiKey2Fill } from "@react-icons/all-files/ri/RiKey2Fill "
10
+ import { FaWrench } from "@react-icons/all-files/fa/FaWrench "
11
11
12
12
export enum SideNavLinkDestination {
13
13
Home ,
@@ -18,7 +18,7 @@ export enum SideNavLinkDestination {
18
18
SensitiveData ,
19
19
Vulnerabilities ,
20
20
Protection ,
21
- Keys ,
21
+ Settings ,
22
22
}
23
23
24
24
export const sideNavDestinationToLabel : (
@@ -41,8 +41,8 @@ export const sideNavDestinationToLabel: (
41
41
return "Connections"
42
42
case SideNavLinkDestination . Protection :
43
43
return "Protection"
44
- case SideNavLinkDestination . Keys :
45
- return "API Keys "
44
+ case SideNavLinkDestination . Settings :
45
+ return "Settings "
46
46
default :
47
47
throw Error ( `No value mapped for ${ dest } ` )
48
48
}
@@ -68,8 +68,8 @@ export const sideNavDestinationToIcon: (
68
68
return FaShareAlt
69
69
case SideNavLinkDestination . Protection :
70
70
return HiShieldCheck
71
- case SideNavLinkDestination . Keys :
72
- return RiKey2Fill
71
+ case SideNavLinkDestination . Settings :
72
+ return FaWrench
73
73
default :
74
74
throw Error ( `No value mapped for ${ dest } ` )
75
75
}
@@ -95,8 +95,8 @@ export const sideNavDestinationToHref: (
95
95
return "/connections"
96
96
case SideNavLinkDestination . Protection :
97
97
return "/protection"
98
- case SideNavLinkDestination . Keys :
99
- return "/keys "
98
+ case SideNavLinkDestination . Settings :
99
+ return "/settings "
100
100
default :
101
101
throw Error ( `No value mapped for ${ dest } ` )
102
102
}
0 commit comments