Skip to content

Commit

Permalink
Update datalayer helpers guide to fix the property available in AppHe…
Browse files Browse the repository at this point in the history
…lperNodeStatus (#1832)
  • Loading branch information
luizgrp authored Nov 23, 2023
1 parent 36c0d29 commit e53d420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/datalayer-helpers-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ phone.
user the option to navigate to the companion app to install it:
```kotlin
if (node.installedTiles.isEmpty() && askUserAttempts < MAX_ATTEMPTS) {
if (node.surfacesInfo.tilesList.isEmpty() && askUserAttempts < MAX_ATTEMPTS) {
// Show guidance to the user and then launch companion
// to allow the to install the Tile.
val result = appHelper.startCompanion(nodeStatus.id)
val result = appHelper.startCompanion(node.id)
}
```
Expand Down

0 comments on commit e53d420

Please sign in to comment.