Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #627 from egovernments/PFM-3547
Browse files Browse the repository at this point in the history
PFM-3547
  • Loading branch information
rahuldevgarg authored Oct 22, 2023
2 parents 6003dcc + 30858e6 commit 130a8f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/mgramseva/lib/providers/common_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class CommonProvider with ChangeNotifier {
userLoggedStreamCtrl.add(null);
}
if (userResponse == null) {
userResponse = 'false';
userResponse = 'true';
}
return userResponse;
}
Expand Down
6 changes: 3 additions & 3 deletions frontend/mgramseva/lib/screeens/home/home_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class _HomeCard extends State<HomeCard> {
arguments: item.arguments),
child: new Card(
key: homeProvider.homeWalkthroughList
.where((element) => element.label == item.label)
.first
.key,
.where((element) => element.label == item.label).isNotEmpty?homeProvider.homeWalkthroughList
.where((element) => element.label == item.label).first
.key:Key(item.label),
margin: EdgeInsets.symmetric(vertical: 10, horizontal: 10),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
Expand Down

0 comments on commit 130a8f4

Please sign in to comment.