Skip to content

Commit 7f50fee

Browse files
committed
fix: lint
1 parent a1b25f6 commit 7f50fee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/RuntimeDecorator.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ void injectJSIBindings(jsi::Runtime &rt) {
2323
jsi::PropNameID::forAscii(rt, "jsi_registerMarkdownWorklet"),
2424
1,
2525
[](jsi::Runtime &rt, const jsi::Value &thisValue, const jsi::Value *args, size_t count) -> jsi::Value {
26-
#ifdef WORKLETS_INSTALLED
26+
#ifdef WORKLETS_INSTALLED
2727
auto worklet = extractSerializableOrThrow<SerializableWorklet>(rt, args[0]);
28-
#else
28+
#else
2929
auto worklet = extractShareableOrThrow<SerializableWorklet>(rt, args[0]);
30-
#endif
30+
#endif
3131
auto parserId = registerMarkdownWorklet(worklet);
3232
return jsi::Value(parserId);
3333
}));

0 commit comments

Comments
 (0)