Skip to content

Commit

Permalink
Fix analysis error
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed May 8, 2024
1 parent 820030b commit 0280e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/lib/ui/widgets/used_for_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import 'package:flutter/material.dart';
class UsedForList extends StatefulWidget {
final Paginator<UsedFor> paginator;
final void Function(UsedFor usedFor) onDeleteClick;
bool isEditMode = false;
final bool isEditMode;

UsedForList(
const UsedForList(
{super.key,
required this.paginator,
required this.onDeleteClick,
Expand Down

0 comments on commit 0280e4a

Please sign in to comment.