Skip to content

Commit

Permalink
Bump FFVL delay to 90s
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb committed Jul 23, 2024
1 parent 5264b99 commit a5bab0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/fxc-front/src/app/components/2d/map-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class MapElement extends connect(store)(LitElement) {
.then(() => {
return new Promise<void>((resolve) => {
const throttle = store.getState().browser.isFromFfvl;
setTimeout(() => resolve(), throttle ? 70 * 1000 : 0);
setTimeout(() => resolve(), throttle ? 90 * 1000 : 0);
});
})
.then((): void => {
Expand Down

0 comments on commit a5bab0e

Please sign in to comment.