diff --git a/awx/ui_next/src/components/JobList/useWsJobs.js b/awx/ui_next/src/components/JobList/useWsJobs.js index 46068353af..9c939f25d9 100644 --- a/awx/ui_next/src/components/JobList/useWsJobs.js +++ b/awx/ui_next/src/components/JobList/useWsJobs.js @@ -1,6 +1,6 @@ import { useState, useEffect, useRef } from 'react'; import { useLocation } from 'react-router-dom'; -import useThrottle from './useThrottle'; +import useThrottle from '../../util/useThrottle'; import { parseQueryString } from '../../util/qs'; import sortJobs from './sortJobs'; diff --git a/awx/ui_next/src/components/JobList/useThrottle.js b/awx/ui_next/src/util/useThrottle.js similarity index 100% rename from awx/ui_next/src/components/JobList/useThrottle.js rename to awx/ui_next/src/util/useThrottle.js