Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/apps/labelstudio/src/components/HeidiTips/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const loadLiveTipsCollection = () => {
const abortController = new AbortController();

// Abort the request after MAX_TIMEOUT milliseconds to ensure we won't wait for too long, something might be wrong with the network or it could be an air-gapped instance
const abortTimeout = setTimeout(abortController.abort, MAX_TIMEOUT);
const abortTimeout = setTimeout(() => abortController.abort(), MAX_TIMEOUT);

// Fetch from github raw liveContent.json proxied through the server
fetch("/heidi-tips", {
Expand Down
Loading