store/wizardSlice: default to 'register-later' when on-premise
This commit is contained in:
parent
61107e122e
commit
0204bcced5
1 changed files with 3 additions and 1 deletions
|
|
@ -186,7 +186,9 @@ export const initialState: wizardState = {
|
|||
email: '',
|
||||
},
|
||||
registration: {
|
||||
registrationType: 'register-now-rhc',
|
||||
registrationType: process.env.IS_ON_PREMISE
|
||||
? 'register-later'
|
||||
: 'register-now-rhc',
|
||||
activationKey: undefined,
|
||||
},
|
||||
compliance: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue