From aed1daa8f571d2cf36134a832b0fbda3b8d630d8 Mon Sep 17 00:00:00 2001 From: Alexander Vakrilov Date: Wed, 10 Jul 2019 18:39:21 +0300 Subject: [PATCH] fix: Missing app.css error in playground (#7499) --- tns-core-modules/ui/styling/style-scope.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tns-core-modules/ui/styling/style-scope.ts b/tns-core-modules/ui/styling/style-scope.ts index 317391935..3d3d60528 100644 --- a/tns-core-modules/ui/styling/style-scope.ts +++ b/tns-core-modules/ui/styling/style-scope.ts @@ -97,7 +97,8 @@ class CSSSource { } } } catch (e) { - traceWrite(`Could not load CSS from ${uri}: ${e}`, traceCategories.Error, traceMessageType.error); + // TODO: Commented as this prints error in playground: https://github.com/NativeScript/NativeScript/issues/7497 + // traceWrite(`Could not load CSS from ${uri}: ${e}`, traceCategories.Error, traceMessageType.error); } return CSSSource.fromFile(appRelativeUri, keyframes);