Skip to content

Commit

Permalink
web/satellite/v2: remove err message for missing partner in signup cfg
Browse files Browse the repository at this point in the history
This change removes the error message that appears when a specified
partner isn't found in the registration page's configuration file.

Change-Id: Ifa457ce0df1ea1ac4a3396956c88b086f8bb4db1
  • Loading branch information
jewharton authored and Storj Robot committed Feb 2, 2024
1 parent a2061ca commit 3801c56
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions web/satellite/vuetify-poc/src/views/Signup.vue
Expand Up @@ -551,11 +551,6 @@ onBeforeMount(async () => {
try {
const config = (await import('@/views/registration/registrationViewConfig.json')).default;
viewConfig.value = config[partner.value];
// Optionally handle the case where there is no configuration for the given partner
if (!viewConfig.value) {
notify.error('No configuration found for the specified partner.');
}
} catch (e) {
// Handle errors, such as a missing configuration file
notify.error('No configuration file for registration page.');
Expand Down

0 comments on commit 3801c56

Please sign in to comment.