Skip to content

Commit

Permalink
chore: Update app.component.ts to increase session keep-alive interval
Browse files Browse the repository at this point in the history
The app.component.ts file has been updated to increase the session keep-alive interval from 2 seconds to 1 minute. This change ensures that sessions remain active for a longer duration, improving the reliability and responsiveness of the application.
  • Loading branch information
EdiWang committed Aug 22, 2024
1 parent c2880ff commit 2ac6cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class AppComponent implements OnInit, OnDestroy {
}
}
);
}, 2000);
}, 1 * 60 * 1000);
}

ngOnDestroy() {
Expand Down

0 comments on commit 2ac6cfc

Please sign in to comment.