Ernesto Mancebo
Ernesto Mancebo
That's because you're using a real value (2.0) as a categorical feature. See in the error that it must be interger o string value. If that column is supposed to...
Remember to cast the column into a interger value as CatBoost states. That'd remove the decimal value on every element in the column, that's something to take in count.
Try passing an initial state to the third argument ``` StoreModule.forFeature('adminState', userReducer, { initialState: {}, metaReducers }), ``` or to the forRoot module. ``` ... StoreModule.forRoot({}), StoreModule.forFeature('adminState', userReducer, { metaReducers...
You could pass a `reviver` function that parses the non-string keys. Assuming that the state slice is called `person`, it should be something like this: ``` const personReviver = (key,...
The action seems to be an object instead of a string value, thus `blacklist` doesn't catch it. Could you please expand the action item logged?
lgtm
Did you tried to logout on TESTE user then login, then refresh to see if the token is the belonged to the TESTE user? Either way, if you don't mind,...
I'm addressing for the item 68 (https://github.com/btroncone/ngrx-store-localstorage/issues/68), not sure why didn't linked on the title. The idea behind this is to call a function after the update state promise completes....
You can specify the JSON parsing function when specifying the state key in the configuration as an object passed to the `localStorageSync`. You must pass a `serialize` and `deserialize` function...
I got your point, but if you see closer to the lines 127, then the 183, you can see that first serialize then stringify and then when retrieving the state,...