chore: publish version 1.1.1 #43

Merged
hernik merged 27 commits from dev into main 2024-04-22 17:05:22 +02:00
Showing only changes of commit 8ff63c9492 - Show all commits

View file

@ -97,7 +97,8 @@ class _GraphViewState extends State<GraphView> {
super.initState();
loadWallet();
SharedPreferences.getInstance().then((s) {
chartType = s.getInt("monthlygraph") ?? 2;
chartType = s.getInt("yearlygraph") ?? 1;
logger.d(chartType);
setState(() {});
});
}