diff --git a/modules/ppcp-settings/resources/js/data/styling/actions.js b/modules/ppcp-settings/resources/js/data/styling/actions.js index e655e7424..9e1639c7f 100644 --- a/modules/ppcp-settings/resources/js/data/styling/actions.js +++ b/modules/ppcp-settings/resources/js/data/styling/actions.js @@ -63,10 +63,10 @@ export const setPersistent = ( prop, value ) => ( { /** * Transient. Changes the "ready-state" of the module. * - * @param {boolean} state Whether the store is ready to be used. + * @param {boolean} isReady Whether the store is ready to be used. * @return {Action} The action. */ -export const setIsReady = ( state ) => setTransient( 'isReady', state ); +export const setIsReady = ( isReady ) => setTransient( 'isReady', isReady ); /** * Thunk action creator. Triggers the persistence of store data to the server.