-
-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/app performance #444
base: master
Are you sure you want to change the base?
Fix/app performance #444
Conversation
…ii/flutter into fix/app-performance
final weightProvider = context.read<BodyWeightProvider>(); | ||
final measurementProvider = context.read<MeasurementProvider>(); | ||
final userProvider = context.read<UserProvider>(); | ||
// final workoutPlansProvider = context.read<WorkoutPlansProvider>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should ideally be removed if now unused.
weightProvider.fetchAndSetEntries(), | ||
measurementProvider.fetchAndSetAllCategoriesAndEntries(), | ||
]); | ||
// log('Loading plans, weight, measurements and gallery'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove commented out code if not going to be used (see prev comment).
await workoutPlansProvider.fetchAndSetWorkoutPlanFull(planId); | ||
workoutPlansProvider.setCurrentPlan(planId); | ||
} | ||
// log('Loading current nutritional plan'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove (see prev comment)
Description (Proposed Changes)
(Please try to mention in bullet points.)
Link to the issue :
(Add link of the issue you have proposed changes to)
Tests
Please make sure to add tests when implementing new features.
Checklist
Please check that the PR fulfills all requirements listed below by checking the relevant checkboxes (
[x]
). This will ensure a smooth and quick review process.///
).