fix(site): change `utils/delay` import path (#10065)

This commit is contained in:
Colin Adler 2023-10-04 17:15:20 -05:00 committed by GitHub
parent df8e10cc4c
commit d5040441aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import axios from "axios";
import dayjs from "dayjs";
import * as TypesGen from "./typesGenerated";
import { delay } from "utils/delay";
// This needs to include the `../`, otherwise it breaks when importing into
// vscode-coder.
import { delay } from "../utils/delay";
import userAgentParser from "ua-parser-js";
// Adds 304 for the default axios validateStatus function