diff --git a/lib/core/routes/routes.dart b/lib/core/routes/routes.dart index 2364b92..96a93cc 100644 --- a/lib/core/routes/routes.dart +++ b/lib/core/routes/routes.dart @@ -157,14 +157,14 @@ final goRouter = GoRouter( }, ), GoRoute( - - name: RouteName.walletDetails, - path: "${RouteName.walletDetails}/:type", - builder: (context, state) { - return WalletDetails( - type: state.pathParameters["type"]!, - ); - + name: RouteName.walletDetails, + path: "${RouteName.walletDetails}/:type", + builder: (context, state) { + return WalletDetails( + type: state.pathParameters["type"]!, + ); + }), + GoRoute( name: RouteName.contactAdminScreen, path: RouteName.contactAdminScreen, builder: (context, state) { @@ -183,7 +183,6 @@ final goRouter = GoRouter( path: RouteName.deleteAccountScreen, builder: (context, state) { return const DeleteAccountScreen(); - }, ), ],