From 13ef9edacb8ce622a22f1e64f30c2a31fac97c53 Mon Sep 17 00:00:00 2001 From: l00913061 Date: Tue, 22 Jul 2025 22:24:01 +0800 Subject: [PATCH] undefined Signed-off-by: l00913061 Change-Id: I69361ea0a6d97c2ff1fa8f416858259d27a2adbc --- arkui-plugins/ui-plugins/interop/interop.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arkui-plugins/ui-plugins/interop/interop.ts b/arkui-plugins/ui-plugins/interop/interop.ts index 5230039d7..8da4bc6d5 100644 --- a/arkui-plugins/ui-plugins/interop/interop.ts +++ b/arkui-plugins/ui-plugins/interop/interop.ts @@ -119,9 +119,9 @@ function newComponent(className: string): arkts.Statement { arkts.factory.createETSNewClassInstanceExpression( arkts.factory.createIdentifier(className), [ - generateTSASExpression(getWrapValue(arkts.factory.createUndefinedLiteral())), + arkts.factory.createUndefinedLiteral(), generateTSASExpression(arkts.factory.createIdentifier(InteroperAbilityNames.PARAM)), - generateTSASExpression(getWrapValue(arkts.factory.createUndefinedLiteral())), + arkts.factory.createUndefinedLiteral(), generateTSASExpression(arkts.factory.createIdentifier(InteroperAbilityNames.ELMTID)), arkts.factory.createTSAsExpression( arkts.factory.createArrowFunction( -- Gitee