fix: add newly introduced parameter for App.start function to all corresponding usages

This commit is contained in:
2026-01-20 15:16:10 +01:00
parent a71d808250
commit 89517b2546
17 changed files with 18 additions and 18 deletions

View File

@@ -116,7 +116,7 @@ pub fn main() !void {
try container.append(try App.Container.init(allocator, .{}, info_text.element()));
try container.append(try App.Container.init(allocator, .{}, error_notification.element()));
try app.start();
try app.start(.full);
defer app.stop() catch |err| log.err("Failed to stop application: {any}", .{err});
while (true) {