Skip to content

Commit

Permalink
Disable the install screen
Browse files Browse the repository at this point in the history
It confuses a lot of users
  • Loading branch information
vicb committed Jun 20, 2024
1 parent cdf5dd8 commit d8fe493
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/fxc-front/src/flyxc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ export class FlyXc extends connect(store)(LitElement) {

private showPwaInstall = false;

stateChanged(state: RootState): void {
this.showPwaInstall = !state.app.pwaInstallCancelled && !state.browser.isInIframe;
stateChanged(): void {
// TODO(vicb): install screen is confusing
// this.showPwaInstall = !state.app.pwaInstallCancelled && !state.browser.isInIframe;
}

constructor() {
Expand Down

0 comments on commit d8fe493

Please sign in to comment.