Remove unused jsInvoker from Cxx TM enums (#37454)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/37454

Raised here: https://github.com/reactwg/react-native-releases/discussions/54#discussioncomment-5914928

Changelog: [Internal]

Reviewed By: rshest

Differential Revision: D45918922

fbshipit-source-id: 931d2017c37e7327ba472c36e3ac0b29b74d093d
This commit is contained in:
Christoph Purrer
2023-05-17 08:33:36 -07:00
committed by Facebook GitHub Bot
parent 23fad5e2db
commit f7dcc65a3f
3 changed files with 15 additions and 15 deletions
@@ -338,7 +338,7 @@ enum ${enumName} { ${values} };
template <>
struct Bridging<${enumName}> {
static ${enumName} fromJs(jsi::Runtime &rt, ${fromValue}, const std::shared_ptr<CallInvoker> &jsInvoker) {
static ${enumName} fromJs(jsi::Runtime &rt, ${fromValue}) {
${fromValueConversion}
${fromCases}
}