melos format

This commit is contained in:
Fabian Freund
2026-05-01 12:48:18 +02:00
parent f76a81041b
commit 65fd9c2e93
12 changed files with 61 additions and 59 deletions
@@ -113,16 +113,16 @@ class IntentGatekeeperDialog extends HookConsumerWidget {
),
const SizedBox(height: 8),
FilledButton.tonal(
onPressed: () => Navigator.of(context).pop(
const DialogOutcome(decision: IntentSourcePolicy.allow),
),
onPressed: () => Navigator.of(
context,
).pop(const DialogOutcome(decision: IntentSourcePolicy.allow)),
child: const Text('Allow once'),
),
const SizedBox(height: 8),
OutlinedButton(
onPressed: () => Navigator.of(context).pop(
const DialogOutcome(decision: IntentSourcePolicy.block),
),
onPressed: () => Navigator.of(
context,
).pop(const DialogOutcome(decision: IntentSourcePolicy.block)),
child: const Text('Block once'),
),
const SizedBox(height: 8),