File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,18 +30,18 @@ export const AppNavigationComponent: React.FC<TAppNavigationComponentProps> = ({
3030 } ,
3131 } }
3232 >
33- < StyledTab
33+ { /* <StyledTab
3434 label="Data Manager"
3535 value={convertNavigationTabName(ROUTES.DATA_MANAGER)}
3636 onClick={() => handleTabChange(ROUTES.DATA_MANAGER)}
37- />
37+ /> */ }
3838 < StyledTab
39- label = "Transaction screen "
39+ label = "Transaction Explorer "
4040 value = { convertNavigationTabName ( ROUTES . TRANSACTION_SCREEN ) }
4141 onClick = { ( ) => handleTabChange ( ROUTES . TRANSACTION_SCREEN ) }
4242 />
4343 < StyledTab
44- label = "Transaction Explorer "
44+ label = "Gas Usage Map "
4545 value = { convertNavigationTabName ( ROUTES . TRANSACTION_EXPLORER ) }
4646 onClick = { ( ) => handleTabChange ( ROUTES . TRANSACTION_EXPLORER ) }
4747 />
Original file line number Diff line number Diff line change @@ -18,15 +18,19 @@ export const appRouter = createBrowserRouter(
1818 children : [
1919 {
2020 path : ROUTES . TRANSACTION_SCREEN ,
21- element : < TransactionScreen /> ,
21+ element : < TransactionExplorer /> ,
22+ } ,
23+ {
24+ path : ROUTES . REDIRECT_OLD ,
25+ element : < TransactionExplorer /> ,
2226 } ,
2327 {
2428 path : ROUTES . DATA_MANAGER ,
2529 element : < AnalyzeSummary /> ,
2630 } ,
2731 {
2832 path : ROUTES . TRANSACTION_EXPLORER ,
29- element : < TransactionExplorer /> ,
33+ element : < TransactionScreen /> ,
3034 } ,
3135 ] ,
3236 } ,
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ export enum ROUTES {
22 BASE = 'evm-debugger' ,
33 HOME = '/' ,
44 APP = '/tx' ,
5- TRANSACTION_SCREEN = '/tx/:chainId/:txHash' ,
5+ TRANSACTION_SCREEN = '/tx/:chainId/:txHash/ ' ,
66 DATA_MANAGER = '/tx/:chainId/:txHash/dataManager' ,
7- TRANSACTION_EXPLORER = '/tx/:chainId/:txHash/transactionExplorer' ,
7+ TRANSACTION_EXPLORER = '/tx/:chainId/:txHash/gas_usage_map' ,
8+ REDIRECT_OLD = '/tx/:chainId/:txHash/transactionExplorer' ,
89}
You can’t perform that action at this time.
0 commit comments