Skip to content

Commit

Permalink
[sc-117500] fix typo (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: Chayel J Heinsen <[email protected]>
  • Loading branch information
chrissiewasabi and chayelheinsen authored Jun 24, 2024
1 parent d7338c2 commit a65f10f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class RNMovableInkModule(reactContext: ReactApplicationContext) :

fun ReadableArray.toStringList(): List<String> {
val stringList = mutableListOf<String>()
for (i in 0 until size) {
for (i in 0 until size()) {
stringList.add(getString(i))
}
return stringList
Expand Down
2 changes: 1 addition & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function App() {

// Make sure to call RNMovableInk.start when your app starts
RNMovableInk.start();
RNMovableInk.setMIU("00000000-00000000-00000000-00000000")
RNMovableInk.setMIU('00000000-00000000-00000000-00000000');

// Get the deep link used to open the app
const getInitialURL = async () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@movable/react-native-sdk",
"version": "1.5.2",
"version": "1.5.3",
"description": "MovableInk React Native SDK",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit a65f10f

Please sign in to comment.