Skip to content

Commit

Permalink
chore(app): resolve conversations
Browse files Browse the repository at this point in the history
  • Loading branch information
kolioOtSofia committed Jul 31, 2022
1 parent 6285608 commit a75a513
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/lib/faq/pages/faq.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class FaqPage extends StatelessWidget {
child: Padding(
padding: const EdgeInsets.all(8),
child: Column(
key: Key('questions_column'),
key: Key('questionsColumn'),
children: [
_buildHeaderCard(context),
SizedBox(height: 8),
Expand Down
5 changes: 4 additions & 1 deletion app/lib/login/pages/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import '../models/lab.dart';
import 'cubit.dart';

class LoginPage extends HookWidget {
const LoginPage({Key? key, @visibleForTesting this.cubit}) : super(key: key);
const LoginPage({
Key? key,
@visibleForTesting this.cubit,
}) : super(key: key);

final LoginPageCubit? cubit;

Expand Down
4 changes: 3 additions & 1 deletion app/lib/reports/pages/reports.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import '../../common/module.dart';
import 'cubit.dart';

class ReportsPage extends StatelessWidget {
const ReportsPage({@visibleForTesting this.cubit});
const ReportsPage({
@visibleForTesting this.cubit,
});

final ReportsCubit? cubit;

Expand Down

0 comments on commit a75a513

Please sign in to comment.