Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
optometrists
/
cache
/
cache
/
cache
/
.wp-cli
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
assets
/
js
/
base
/
context
/
providers
/
cart-checkout
/
shipping
:
reducers.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * Internal dependencies */ import { ERROR_TYPES } from './constants'; /** * Reducer for shipping status state * * @param {string} state The current status. * @param {Object} action The incoming action. * @param {string} action.type The type of action. */ export const errorStatusReducer = ( state, { type } ) => { if ( Object.values( ERROR_TYPES ).includes( type ) ) { return type; } return state; };