Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[sc-117500] fix typo #15

Merged
merged 3 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@

// 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 Expand Up @@ -67,7 +67,7 @@
<Button
title="Test Custom Event"
onPress={(_event) => {
RNMovableInk.logEvent('test_event', { });

Check failure on line 70 in example/src/App.tsx

View workflow job for this annotation

GitHub Actions / lint

Delete `·`
}}
/>

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
Loading