@@ -6,6 +6,7 @@ const Landing = lazy(() => import('~/layouts/Landing'));
66const Overview = lazy ( ( ) => import ( '~/layouts/Overview' ) ) ;
77const Portfolio = lazy ( ( ) => import ( '~/layouts/Portfolio' ) ) ;
88const Authorizations = lazy ( ( ) => import ( '~/layouts/Authorizations' ) ) ;
9+ const SecondaryKeys = lazy ( ( ) => import ( '~/layouts/SecondaryKeys' ) ) ;
910const Transfers = lazy ( ( ) => import ( '~/layouts/Transfers' ) ) ;
1011const MultiSig = lazy ( ( ) => import ( '~/layouts/MultiSig' ) ) ;
1112const Claims = lazy ( ( ) => import ( '~/layouts/Claims' ) ) ;
@@ -47,6 +48,7 @@ export const PATHS = {
4748 TRANSFERS : '/transfers' ,
4849 MULTISIG : '/multisig' ,
4950 AUTHORIZATIONS : '/authorizations' ,
51+ SECONDARY_KEYS : '/secondary-key-permissions' ,
5052 CLAIMS : '/claims' ,
5153 DISTRIBUTIONS : '/distributions' ,
5254 SETTINGS : '/settings' ,
@@ -77,6 +79,11 @@ export const ROUTES = [
7779 label : 'Authorizations' ,
7880 component : Authorizations ,
7981 } ,
82+ {
83+ path : PATHS . SECONDARY_KEYS ,
84+ label : 'Secondary Key Permissions' ,
85+ component : SecondaryKeys ,
86+ } ,
8087 { path : PATHS . SETTINGS , label : 'Settings' , component : Settings } ,
8188 {
8289 path : PATHS . TRANSFERS ,
@@ -156,6 +163,11 @@ export const NAV_LINKS = [
156163 icon : 'AuthorizationsIcon' ,
157164 notifications : 'authorizations' ,
158165 } ,
166+ {
167+ path : PATHS . SECONDARY_KEYS ,
168+ label : 'Secondary Key Permissions' ,
169+ icon : 'KeyIcon' ,
170+ } ,
159171 { path : PATHS . CLAIMS , label : 'Claims' , icon : 'ClaimsIcon' } ,
160172 {
161173 path : PATHS . DISTRIBUTIONS ,
0 commit comments