chore: cleanup (again)

This commit is contained in:
2025-01-09 14:54:06 +00:00
parent 85ef186048
commit 785e8dbd22
23 changed files with 74 additions and 57 deletions

View File

@ -36,8 +36,8 @@ pub fn start_android(app: AndroidApp) {
let mut notedeck =
notedeck_chrome::Notedeck::new(&cc.egui_ctx, data_path.clone(), &args);
let app = ZapStreamApp::new(cc);
notedeck.add_app(app);
let zs_app = ZapStreamApp::new(cc, app.clone());
notedeck.add_app(zs_app);
Ok(Box::new(notedeck))
}),