Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.9.2 don't work and I can't get help #2147

Open
wants to merge 1 commit into
base: release/5.9.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api/server/ServerApi.js
Expand Up @@ -486,7 +486,7 @@ export default class ServerApi {
return services;
}
} catch (err) {
throw (new Error('ServerApi::getLegacyServices no config found'));
console.warn('ServerApi::getLegacyServices no config found');
}

return [];
Expand Down
9 changes: 1 addition & 8 deletions src/app.js
Expand Up @@ -34,7 +34,6 @@ import WelcomeScreen from './containers/auth/WelcomeScreen';
import LoginScreen from './containers/auth/LoginScreen';
import PasswordScreen from './containers/auth/PasswordScreen';
import SignupScreen from './containers/auth/SignupScreen';
import ImportScreen from './containers/auth/ImportScreen';
import PricingScreen from './containers/auth/PricingScreen';
import InviteScreen from './containers/auth/InviteScreen';
import AuthLayoutContainer from './containers/auth/AuthLayoutContainer';
Expand Down Expand Up @@ -90,13 +89,7 @@ window.addEventListener('load', () => {
<IndexRedirect to="/auth/welcome" />
<Route path="/auth/welcome" component={WelcomeScreen} />
<Route path="/auth/login" component={LoginScreen} />
<Route path="/auth/signup">
<IndexRedirect to="/auth/signup/form" />
<Route path="/auth/signup/form" component={SignupScreen} />
<Route path="/auth/signup/pricing" component={PricingScreen} />
<Route path="/auth/signup/import" component={ImportScreen} />
<Route path="/auth/signup/invite" component={InviteScreen} />
</Route>
<Route path="/auth/signup" component={SignupScreen} />
<Route path="/auth/password" component={PasswordScreen} />
<Route path="/auth/logout" component={LoginScreen} />
</Route>
Expand Down
165 changes: 0 additions & 165 deletions src/components/auth/Import.js

This file was deleted.

134 changes: 0 additions & 134 deletions src/components/auth/Pricing.js

This file was deleted.

35 changes: 0 additions & 35 deletions src/containers/auth/ImportScreen.js

This file was deleted.