further import issues

This commit is contained in:
Joshua Burman
2024-12-27 16:13:42 -05:00
parent 26d9386812
commit fa374a5bc2
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ class ActivityTimerModel with ChangeNotifier {
int _actionCounter = 0;
Activity? _activity;
List _sets = [];
List _actions = [];
// List _actions = [];
int _currentActionNum = 0;
int _currentSetNum = 0;
Timer? _periodicTimer;
@ -37,7 +37,7 @@ class ActivityTimerModel with ChangeNotifier {
_activity = activity;
// only one action for now
_sets = json.decode(actions[0].set);
_actions = actions;
// _actions = actions;
_currentActionNum = 0;
_currentSetNum = 0;
setActionCount();