[client] Fix NPE

This commit is contained in:
Abhishek Shroff
2024-11-27 23:35:19 +05:30
parent 02f00b79e4
commit 3962c68403

View File

@@ -46,7 +46,7 @@ class _PathViewState extends State<PathView> {
));
if (mounted) {
setState(() {
current = data.last;
current = data.lastOrNull;
ancestors = data;
});
}