diff --git a/packages/config-manager/reapit-config.example.json b/packages/config-manager/reapit-config.example.json index be73771883..5b4ba1c1b8 100644 --- a/packages/config-manager/reapit-config.example.json +++ b/packages/config-manager/reapit-config.example.json @@ -4,30 +4,12 @@ "PLATFORM_API_BASE_URL": "https://dev.platform.reapit.cloud", "MARKETPLACE_API_BASE_URL": "https://dev.platformmarketplace.reapit.cloud", "MARKET_PLACE_URL": "https://dev.marketplace.reapit.cloud", - "MARKETPLACE_API_KEY": "", - "MARKETPLACE_GOOGLE_ANALYTICS_KEY": "", "NODE_ENV": "development", "NPM_TOKEN": "", - "GOOGLE_MAPS_API_KEY": "", - "COGNITO_USERPOOL_ID": "", + "COGNITO_USERPOOL_ID": "eu-west-2_hbt0B7yys", "COGNITO_OAUTH_URL": "https://dev.connect.reapit.cloud", - "COGNITO_CLIENT_ID_MARKETPLACE": "", - "COGNITO_CLIENT_ID_GEO_DIARY": "", - "COGNITO_CLIENT_ID_AML_APP": "", - "COGNITO_CLIENT_ID_LTL_APP": "", + "COGNITO_CLIENT_ID": "", "SWAGGER_BASE_URL": "https://dev.platform.reapit.cloud/docs", - "DEVELOPER_ACCOUNT_EMAIL": "", - "DEVELOPER_ACCOUNT_PASSWORD": "", - "CLIENT_ACCOUNT_EMAIL": "", - "CLIENT_ACCOUNT_PASSWORD": "", - "ADMIN_ACCOUNT_EMAIL": "", - "ADMIN_ACCOUNT_PASSWORD": "", - "APPLICATION_URL": "http://localhost:8080", - "RETRIES": 0, - "CHATBOT_APP_ID": "", - "SENTRY_PROJECT_URL_MARKETPLACE": "", - "SENTRY_PROJECT_URL_GEO_DIARY": "", - "SENTRY_PROJECT_URL_AML_APP": "", - "SENTRY_PROJECT_URL_LTL_APP": "" + "APPLICATION_URL": "http://localhost:8080" } } diff --git a/packages/marketplace/src/components/pages/__tests__/__snapshots__/developer-submit-app-successfully.tsx.snap b/packages/marketplace/src/components/pages/__tests__/__snapshots__/developer-submit-app-successfully.tsx.snap index aa8ec8cf49..f21a2cddd4 100644 --- a/packages/marketplace/src/components/pages/__tests__/__snapshots__/developer-submit-app-successfully.tsx.snap +++ b/packages/marketplace/src/components/pages/__tests__/__snapshots__/developer-submit-app-successfully.tsx.snap @@ -39,7 +39,7 @@ exports[`DeveloperSubmitAppSuccessfully renders correctly 1`] = `
- You will be directed to the ‘My Apps’ page where you will be able to access the ‘Client ID’ of you App (required for authentication) and or make any changes to your App by clicking ‘Edit Details’. + You will be directed to the ‘My Apps’ page where you will be able to access the ‘Client ID’ of your App (required for authentication) and or make any changes to your App by clicking ‘Edit Details’.
@@ -53,7 +53,7 @@ exports[`DeveloperSubmitAppSuccessfully renders correctly 1`] = ` Please note: - Any changes you make now to your App (included making it ‘Listed’) will require approval. These are called ‘Revisions’. All revisions will be sent to our Admin department and whilst your App is being reviewed, you will not be able to make any further changes and the App will be marked as ‘Pending Revision’. + Any changes you make now to your App (including making it ‘Listed’) will require approval. These are called ‘Revisions’. All revisions will be sent to our Admin department and whilst your App is being reviewed, you will not be able to make any further changes and the App will be marked as ‘Pending Revision’.
@@ -61,7 +61,13 @@ exports[`DeveloperSubmitAppSuccessfully renders correctly 1`] = `
- For any issues or support, please visit the ‘Help’ page. + For any issues or support, please visit the + + ‘Help’ + + page.
You will be directed to the ‘My Apps’ page where you will be able to access the ‘Client - ID’ of you App (required for authentication) and or make any changes to your App by clicking ‘Edit - Details’. + ID’ of your App (required for authentication) and or make any changes to your App by clicking + ‘Edit Details’.
@@ -43,7 +45,7 @@ export const DeveloperSubmitAppSuccessfully: React.FC
- Please note: Any changes you make now to your App (included making it ‘Listed’)
+ Please note: Any changes you make now to your App (including making it ‘Listed’)
will require approval. These are called ‘Revisions’. All revisions will be sent to our Admin
department and whilst your App is being reviewed, you will not be able to make any further changes and the App
will be marked as ‘Pending Revision’.
@@ -54,7 +56,9 @@ export const DeveloperSubmitAppSuccessfully: React.FC For any issues or support, please visit the ‘Help’ page.
+ For any issues or support, please visit the ‘Help’ page.
+
-
diff --git a/packages/marketplace/src/components/pages/developer-submit-app.tsx b/packages/marketplace/src/components/pages/developer-submit-app.tsx
index 1a6971abde..ff01765142 100644
--- a/packages/marketplace/src/components/pages/developer-submit-app.tsx
+++ b/packages/marketplace/src/components/pages/developer-submit-app.tsx
@@ -244,7 +244,11 @@ export const handleSubmitModalContinue = setIsSubmitModalOpen => () => {
}
export const handleSubmitModalViewDocs = () => {
- window.location.assign(DOCS_LINKS.DEVELOPER_PORTAL)
+ const newTab = window.open(DOCS_LINKS.DEVELOPER_PORTAL, '_blank')
+
+ if (newTab) {
+ newTab.focus()
+ }
}
const getGoBackToAppsFunc = ({ history }: Pick