B@RT

Results 4 comments of B@RT

```ts storage: { ...storage, setItem: (key: string, item: string): Promise => { return new Promise((resolve): void => { resolve(storage.setItem(key, JSON.stringify(item))); }); }, getItem: (key: string): Promise => { return new...

can you fix the conflicts and accept the changes to update the version? or can I do this in your pr?

I had to override the `registerScenes` method to solve this issue

```ts import { cloneDeep, isObject, merge, omit } from 'lodash'; stateReconciler: ( inboundState: Record, originalState: Record, reducedState: Record, ): Record => { const newState = cloneDeep(omit(reducedState, ['_persist'])); return isObject(inboundState) ?...