Skip to content

Commit

Permalink
feat: set ACTIVITY_TIMEOUT to 1min
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Apr 29, 2024
1 parent 1c4730d commit f521299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/components/AppWrapper/AppWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const AppWrapper = (props: { children: ReactNode }) => {
const [initialised, setInitialised] = useState(false);
const [agentInitErr, setAgentInitErr] = useState(false);

const ACTIVITY_TIMEOUT = 30000;
const ACTIVITY_TIMEOUT = 60000;
let timer: NodeJS.Timeout;
let timeoutDuration = ACTIVITY_TIMEOUT;

Expand Down

0 comments on commit f521299

Please sign in to comment.