We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def519a commit e4f26e9Copy full SHA for e4f26e9
frontend/src/features/admin-form/settings/components/FormStatusToggle.tsx
@@ -41,13 +41,7 @@ export const FormStatusToggle = (): JSX.Element => {
41
if (status === FormStatus.Public) return
42
43
// Prevent form activation if form has authType but no esrvcId.
44
- if (
45
- authType &&
46
- [FormAuthType.CP, FormAuthType.SP, FormAuthType.MyInfo].includes(
47
- authType,
48
- ) &&
49
- !esrvcId
50
- ) {
+ if (authType && [FormAuthType.CP].includes(authType) && !esrvcId) {
51
return t(
52
'features.adminForm.settings.general.status.supplySingpassEServiceId',
53
)
0 commit comments