♻️ Rename actions for better semantics

This commit is contained in:
Philipp Stracker 2024-12-19 13:26:19 +01:00
parent da96c084ab
commit 1e26852aa1
No known key found for this signature in database
3 changed files with 14 additions and 14 deletions

View file

@ -150,7 +150,7 @@ export const persist = function* () {
*
* @return {Action} The action.
*/
export const connectToSandbox = function* () {
export const sandboxOnboardingUrl = function* () {
return yield {
type: ACTION_TYPES.DO_GENERATE_ONBOARDING_URL,
environment: 'sandbox',
@ -164,7 +164,7 @@ export const connectToSandbox = function* () {
* @param {string[]} products Which products/features to display in the ISU popup.
* @return {Action} The action.
*/
export const connectToProduction = function* ( products = [] ) {
export const productionOnboardingUrl = function* ( products = [] ) {
return yield {
type: ACTION_TYPES.DO_GENERATE_ONBOARDING_URL,
environment: 'production',