Skip to content

2.8.1 — action.type implicitly converts to string

Compare
Choose a tag to compare
@imevro imevro released this 02 Feb 14:32
· 45 commits to master since this release

Remember this recipe?

import createLogger from 'redux-logger';

const logger = createLogger({
  actionTransformer: (action) => ({
    ...action,
    type: String(action.type),
  })
});

No more!

Changelog

  • feat: implicitly convert action.type to String() in console.log (#195, #194, #106, #129, #128, #14, etc)