use async mutable coverage for meta struct

This commit is contained in:
yggverse 2024-09-26 00:08:33 +03:00
parent a1d477ddce
commit 196b82d4f5

View File

@ -43,8 +43,8 @@ impl Page {
widget.append(navigation.widget());
widget.append(content.widget());
// Init meta
let meta = Arc::new(Meta::new());
// Init async mutable Meta object
let meta = Arc::new(RefCell::new(Meta::new()));
// Result
Arc::new(Self {