From b492325cabd6c247ff99b38c97ca426f25be7c42 Mon Sep 17 00:00:00 2001 From: vakrilov Date: Wed, 10 Jul 2019 18:12:20 +0300 Subject: [PATCH] fix: Missing app.css error in playground --- 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 317391935a..3d3d60528d 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);