prevent specific state redux-persist

JavaScript
// backlist your reducer, 
combineReducer({
	isLoggingIn,
	...
})

const persistConfig = {
  key: 'auth',
  storage: storage,
  blacklist: ['isLoggingIn']
};
Source

Also in JavaScript: