Removes telemetry dependence on notifications

This commit is contained in:
Nikolay Govorov
2026-02-03 16:43:25 +00:00
parent d318fe24b8
commit dbf18b90a7
5 changed files with 23 additions and 56 deletions

View File

@@ -60,7 +60,7 @@ pub fn init(app: *App, opts: InitOpts) !Browser {
var env = try js.Env.init(app, opts.env);
errdefer env.deinit();
const notification = try Notification.init(allocator, app.notification);
const notification = try Notification.init(allocator);
app.http.client.notification = notification;
app.http.client.next_request_id = 0; // Should we track ids in CDP only?
errdefer notification.deinit();