Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansick committed Apr 3, 2024
1 parent f0cfe8a commit 789d876
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export const TimesSquareHtmlEventsContext = React.createContext();

export default function TimesSquareHtmlEventsProvider({ children }) {
const [htmlEvent, setHtmlEvent] = React.useState(null);
const [abortController, setAbortController] = useState(new AbortController());
const [abortController, setAbortController] = React.useState(
new AbortController()
);
const { htmlEventsUrl } = useTimesSquarePage();

React.useEffect(async () => {
Expand Down

0 comments on commit 789d876

Please sign in to comment.