Skip to content

Commit

Permalink
fix(routes): Transactions routing naming
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperVK committed Dec 1, 2024
1 parent b689c45 commit 8feee29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:header="t('components.mutations.balance')"
class="w-full"
:action="simple ? undefined: t('components.mutations.all')"
:routerLink="simple ? undefined : 'transaction-view'"
:routerLink="simple ? undefined : 'transactions'"

>
<DataTable :rows="rows" :value="mutations" :rowsPerPageOptions="[5, 10, 25, 50, 100]" :paginator="paginator" lazy
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/modules/user/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function userRoutes(): RouteRecordRaw[] {
{
path: '/transaction',
component: UserTransactionsView,
name: 'transaction'
name: 'transactions'
},
{
path: '/profile',
Expand Down

0 comments on commit 8feee29

Please sign in to comment.