Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron-eyds committed May 1, 2024
1 parent b724179 commit c66ea30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
16 changes: 8 additions & 8 deletions ppr-ui/src/utils/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ export const defaultFlagSet: LDFlagSet = {
'search-registration-number': true,
'search-serial-number': true,
'mhr-ui-enabled': true, // Mhr Search - default true: Should remove from codebase
'mhr-registration-enabled': true, // Enables MHR table tab
'mhr-staff-correction-enabled': true, // Enables access to staff mhr correction
'mhr-transfer-enabled': true, // Enables changes to base MHR HomeOwners within the MHR Information flow
'mhr-exemption-enabled': true,
'mhr-non-res-exemption-enabled': true, // Enables Non-Residential Exemption for Staff
'mhr-transport-permit-enabled': true,
'mhr-amend-transport-permit-enabled': true,
'mhr-user-access-enabled': true,
'mhr-registration-enabled': false, // Enables MHR table tab
'mhr-staff-correction-enabled': false, // Enables access to staff mhr correction
'mhr-transfer-enabled': false, // Enables changes to base MHR HomeOwners within the MHR Information flow
'mhr-exemption-enabled': false,
'mhr-non-res-exemption-enabled': false, // Enables Non-Residential Exemption for Staff
'mhr-transport-permit-enabled': false,
'mhr-amend-transport-permit-enabled': false,
'mhr-user-access-enabled': false,
'sentry-enable': false, // by default, no sentry logs
'banner-text': '' // by default, there is no banner text
}
Expand Down
3 changes: 1 addition & 2 deletions ppr-ui/src/views/mhrInformation/MhrInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1455,8 +1455,7 @@ export default defineComponent({
onSave()
})
watch(() => getMhrInformation.value.frozenDocumentType,
val => {
watch(() => getMhrInformation.value.frozenDocumentType, val => {
localState.hasAlertMsg = QSLockedStateUnitNoteTypes.includes(val)
})
Expand Down

0 comments on commit c66ea30

Please sign in to comment.