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

chore: empty landing page instead login (DSP-1756) #466

Merged
merged 1 commit into from Jun 22, 2021
Merged
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
5 changes: 5 additions & 0 deletions src/app/main/main.component.scss
Expand Up @@ -2,6 +2,11 @@
@import "../../assets/style/mixins";
@import "../../assets/style/responsive";

:host {
// hide the landing page for the moment
display: none;
}

section {
background-color: #fff;
min-height: 38vh;
Expand Down
2 changes: 1 addition & 1 deletion src/app/main/main.component.ts
Expand Up @@ -79,7 +79,7 @@ export class MainComponent implements OnInit {
} else {
// if session does not exist, redirect to login page
// --> NOTE: this is a temporary solution for DSP-ADMIN-APP
this._router.navigate(['login']);
// this._router.navigate(['login']);
}
}

Expand Down