Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OKendigelyan committed Sep 18, 2024
1 parent 90be62a commit a94888b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/data-polling/src/useDataPolling.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assetsActions, useAppDispatch } from "@umami/state";
import { fromUnixTime } from "date-fns";
import { max } from "lodash";
import max from "lodash/max";
import { useEffect } from "react";

import { usePollAccountStates } from "./usePollAccountStates";
Expand All @@ -12,9 +12,11 @@ import { usePollPendingOperations } from "./usePollPendingOperations";
import { usePollProtocolSettings } from "./usePollProtocolSettings";
import { usePollTokenBalances } from "./usePollTokenBalances";
import { usePollUnstakeRequests } from "./usePollUnstakeRequests";
import { useReactQueryErrorHandler } from "./useReactQueryErrorHandler";

export const useDataPolling = () => {
const dispatch = useAppDispatch();
const handleError = useReactQueryErrorHandler();

const pollers = [
usePollAccountStates(),
Expand Down

0 comments on commit a94888b

Please sign in to comment.