fix: redirect /tx/ routes to /

This commit is contained in:
Rishabh
2024-06-27 15:11:00 +05:30
parent 0b608c96dd
commit d189e70817

View File

@@ -9,6 +9,11 @@ import { AcceleratePreviewComponent } from '../accelerate-preview/accelerate-pre
import { AccelerateFeeGraphComponent } from '../accelerate-preview/accelerate-fee-graph.component';
const routes: Routes = [
{
path: '',
redirectTo: '/',
pathMatch: 'full',
},
{
path: ':id',
component: TransactionComponent,