From 27bca739fd7c3ff716794fec8c8a59f7bfb841db Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Mon, 1 Sep 2025 19:36:13 -0700 Subject: [PATCH] chore: cleanup toolbox --- apps/toolbox/src/main.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/toolbox/src/main.ts b/apps/toolbox/src/main.ts index 4e535ec57..a4c5c529a 100644 --- a/apps/toolbox/src/main.ts +++ b/apps/toolbox/src/main.ts @@ -1,4 +1,3 @@ -import { Application, Trace } from '@nativescript/core'; -Trace.enable(); -Trace.addCategories(Trace.categories.Debug); +import { Application } from '@nativescript/core'; + Application.run({ moduleName: 'app-root' });