Skip to content

Commit

Permalink
Automatic formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 6, 2024
1 parent 33b5e5d commit 610f052
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/presentation/pages/add_bindings/add_binding_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ class _AddBindingPageState extends State<AddBindingPage> {
),
onPressed: (_) async {
final EntityActionObject? actionList =
await context.router.push<EntityActionObject?>(
await context.router
.push<EntityActionObject?>(
AddActionRoute(entities: entities!),
);
if (actionList != null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:auto_route/auto_route.dart';
import 'package:cbj_integrations_controller/integrations_controller.dart';
import 'package:cbj_integrations_controller/integrations_controller.dart';
import 'package:cybearjinni/presentation/atoms/atoms.dart';
import 'package:cybearjinni/presentation/core/routes/app_router.gr.dart';
import 'package:cybearjinni/presentation/core/snack_bar_service.dart';
Expand Down
3 changes: 2 additions & 1 deletion lib/presentation/pages/add_routine/add_routine_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ class _AddRoutinePageState extends State<AddRoutinePage> {
),
onPressed: (_) async {
final EntityActionObject? actionList =
await context.router.push<EntityActionObject?>(
await context.router
.push<EntityActionObject?>(
AddActionRoute(entities: entities!),
);
if (actionList != null) {
Expand Down

0 comments on commit 610f052

Please sign in to comment.