Skip to content

Commit 4708e01

Browse files
committed
SDK-841: Fix pre-existing composeApp JS error for InlineInAppView
The jsHtml InlineInAppView(viewId:) was internal (from a prior subtask) but needs to be accessible from composeApp via @InternalSdkApi, same as the commonComposeMain variant. This resolves 2 of 7 pre-existing composeApp JS compilation errors.
1 parent b8e1dbe commit 4708e01

File tree

1 file changed

+2
-1
lines changed
  • engagement-cloud-sdk/src/jsHtml/kotlin/com/sap/ec/mobileengage/inapp/view

1 file changed

+2
-1
lines changed

engagement-cloud-sdk/src/jsHtml/kotlin/com/sap/ec/mobileengage/inapp/view/InlineInAppView.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ internal fun InlineInAppView(
9292
}
9393

9494
@Composable
95-
internal fun InlineInAppView(
95+
@com.sap.ec.InternalSdkApi
96+
fun InlineInAppView(
9697
viewId: String,
9798
onLoaded: (() -> Unit)? = null,
9899
onClose: (() -> Unit)? = null

0 commit comments

Comments
 (0)