Skip to content

Commit

Permalink
fix: remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed May 7, 2024
1 parent 63a1a82 commit 7a1cee5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/ui/components/AppWrapper/AppWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { ReactNode, useEffect, useState } from "react";
import { useAppDispatch, useAppSelector } from "../../../store/hooks";
import {
getAuthentication,
logout,
setAuthentication,
setCurrentOperation,
setInitialized,
Expand Down Expand Up @@ -43,7 +42,6 @@ import { CredentialStatus } from "../../../core/agent/services/credentialService
import { FavouriteIdentifier } from "../../../store/reducers/identifiersCache/identifiersCache.types";
import "./AppWrapper.scss";
import { ConfigurationService } from "../../../core/configuration";
import { App } from "@capacitor/app";
import { PreferencesStorageItem } from "../../../core/storage/preferences/preferencesStorage.type";
import { useActivityTimer } from "./hooks/useActivityTimer";

Expand Down Expand Up @@ -113,7 +111,6 @@ const AppWrapper = (props: { children: ReactNode }) => {
const authentication = useAppSelector(getAuthentication);
const [agentInitErr, setAgentInitErr] = useState(false);
useActivityTimer();
//const [activityTimeout, setActivityTimeout] = useState(process.env.NODE_ENV === "development" ? 3600000 : 60000);

useEffect(() => {
initApp();
Expand Down

0 comments on commit 7a1cee5

Please sign in to comment.