🎨 Rename an unrelated attribute

This commit is contained in:
Philipp Stracker 2025-02-07 12:08:06 +01:00
parent c2c9e4009f
commit f0ba7090df
No known key found for this signature in database

View file

@ -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.