diff --git a/ReactCommon/jsi/jsi/jsi.h b/ReactCommon/jsi/jsi/jsi.h index 9c86ca39a49569..56884908b6d5d9 100644 --- a/ReactCommon/jsi/jsi/jsi.h +++ b/ReactCommon/jsi/jsi/jsi.h @@ -992,7 +992,7 @@ class JSI_EXPORT Value { /// Copies a Symbol lvalue into a new JS value. Value(Runtime& runtime, const Symbol& sym) : Value(SymbolKind) { - new (&data_.pointer) String(runtime.cloneSymbol(sym.ptr_)); + new (&data_.pointer) Symbol(runtime.cloneSymbol(sym.ptr_)); } /// Copies a String lvalue into a new JS value.