Skip to content

Commit

Permalink
chore(#661): better naming of new lab type
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Nov 14, 2024
1 parent 7329d9a commit 67e9164
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import '../../common/module.dart';
import 'lab.dart';

class AppShareFlowLab extends Lab {
AppShareFlowLab({
class DeepLinkShareFlowLab extends Lab {
DeepLinkShareFlowLab({
required super.name,
required this.shareAppName,
});
Expand Down
4 changes: 2 additions & 2 deletions app/lib/login/pages/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import 'package:provider/provider.dart';

import '../../../common/module.dart';
import '../cubit.dart';
import '../models/app_share_flow_lab.dart';
import '../models/deep_link_share_flow_lab.dart';
import '../models/lab.dart';
import '../models/oauth_authorization_code_flow_lab.dart';

final labs = [
AppShareFlowLab(
DeepLinkShareFlowLab(
name: 'Health-X via Data Wallet App',
shareAppName: 'Data Wallet App',
),
Expand Down

0 comments on commit 67e9164

Please sign in to comment.