refactor
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-01 17:08:44 -06:00
parent 6c5c592471
commit b428e996f0

View File

@ -104,8 +104,7 @@ class _MountWidgetState extends State<MountWidget> {
void initState() {
super.initState();
_timer = Timer.periodic(const Duration(seconds: 5), (_) {
var provider = Provider.of<Mount>(context, listen: false);
provider.refresh();
Provider.of<Mount>(context, listen: false).refresh();
});
}
}