We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2b89a commit 725c0a5Copy full SHA for 725c0a5
1 file changed
components/JottingsControls/jottingsControl.js
@@ -11,8 +11,8 @@ export default function JottingsControl(props) {
11
const [notes, setNotes] = useState(null);
12
const [tasks, setTasks] = useState(null);
13
14
- const ownAbortController = new AbortController();
15
- const sharedAbortController = new AbortController();
+ const ownAbortController = new window.AbortController();
+ const sharedAbortController = new window.AbortController();
16
17
const getJotsToShow = (response, jotType) => {
18
if (
0 commit comments