From 6241131d1e5b7c2161167ab49d2e9491c2702df3 Mon Sep 17 00:00:00 2001 From: Sever Abibula <5903809+SeverS@users.noreply.github.com> Date: Sat, 14 Oct 2023 13:39:52 +0300 Subject: [PATCH] Swap L51 and L50 --- src/parcel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parcel.js b/src/parcel.js index 9e7fde9..949173a 100644 --- a/src/parcel.js +++ b/src/parcel.js @@ -47,8 +47,8 @@ export default class Parcel extends React.Component { this.props.appendTo.appendChild(domElement); } this.parcel = mountParcel(this.props.config, { - domElement, ...this.getParcelProps(), + domElement, }); this.parcel.mountPromise.then(this.props.parcelDidMount); return this.parcel.mountPromise;