feat: add required field support (#557)

This commit is contained in:
Attiya Ishaque
2022-05-19 18:22:51 +05:00
committed by GitHub
parent 25bc11ea8d
commit bce8aa712d
22 changed files with 719 additions and 65 deletions

View File

@@ -8,3 +8,13 @@ export const thirdPartyAuthContextSelector = createSelector(
commonComponentsSelector,
commonComponents => commonComponents.thirdPartyAuthContext,
);
export const fieldDescriptionSelector = createSelector(
commonComponentsSelector,
commonComponents => commonComponents.fieldDescriptions,
);
export const extendedProfileSelector = createSelector(
commonComponentsSelector,
commonComponents => commonComponents.extendedProfile,
);