fix(Map): Fixed link signature modal crash afrer destination system removed

This commit is contained in:
Dmitry Popov
2025-05-05 09:46:39 +02:00
parent 9f656ca3cb
commit 898584bbb6
3 changed files with 21 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
import { MapHandlers } from '@/hooks/Mapper/types/mapHandlers.ts';
import { RefObject, useCallback } from 'react';
// Force reload the page after 30 minutes of inactivity
const FORCE_PAGE_RELOAD_TIMEOUT = 1000 * 60 * 30;
// Force reload the page after 5 minutes of inactivity
const FORCE_PAGE_RELOAD_TIMEOUT = 1000 * 60 * 5;
export const useMapperHandlers = (handlerRefs: RefObject<MapHandlers>[], hooksRef: RefObject<any>) => {
const handleCommand = useCallback(