Skip to content

Commit

Permalink
fix: Wrong accounts route
Browse files Browse the repository at this point in the history
  • Loading branch information
enrique-lozano committed Feb 24, 2024
1 parent 20da4fe commit e12d3df
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/app/settings/settings.page.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:monekin/app/accounts/all_accounts_page.dart';
import 'package:monekin/app/budgets/budgets_page.dart';
import 'package:monekin/app/categories/categories_list.dart';
import 'package:monekin/app/currencies/currency_manager.dart';
Expand Down Expand Up @@ -243,8 +244,8 @@ class _SettingsPageState extends State<SettingsPage> {
context,
title: t.general.accounts,
icon: Icons.account_balance_wallet_rounded,
onTap: () =>
RouteUtils.pushRoute(context, const TagListPage()),
onTap: () => RouteUtils.pushRoute(
context, const AllAccountsPage()),
),
),
if (BreakPoint.of(context).isLargerThan(BreakpointID.sm)) ...[
Expand Down

0 comments on commit e12d3df

Please sign in to comment.