File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -131,17 +131,20 @@ List<SingleChildWidget> dependentServices = [
131131 cardsDataProvider
132132 ..loadSavedData ().then ((_) {
133133 // Update available cards
134- cardsDataProvider.updateAvailableCards (userDataProvider.authenticationModel.ucsdaffiliation);
134+ cardsDataProvider
135+ .updateAvailableCards (userDataProvider.authenticationModel.ucsdaffiliation);
135136
136137 // Student card activation
137- if (userDataProvider.isLoggedIn && (userDataProvider.userProfileModel.classifications? .student ?? false )) {
138+ if (userDataProvider.isLoggedIn &&
139+ (userDataProvider.userProfileModel.classifications? .student ?? false )) {
138140 cardsDataProvider.activateStudentCards ();
139141 } else {
140142 cardsDataProvider.deactivateStudentCards ();
141143 }
142144
143145 // Staff card activation
144- if (userDataProvider.isLoggedIn && (userDataProvider.userProfileModel.classifications? .staff ?? false )) {
146+ if (userDataProvider.isLoggedIn &&
147+ (userDataProvider.userProfileModel.classifications? .staff ?? false )) {
145148 cardsDataProvider.activateStaffCards ();
146149 } else {
147150 cardsDataProvider.deactivateStaffCards ();
You can’t perform that action at this time.
0 commit comments