Skip to content

Commit d504044

Browse files
authored
fix(site): change utils/delay import path (#10065)
1 parent df8e10c commit d504044

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/api/api.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import axios from "axios";
22
import dayjs from "dayjs";
33
import * as TypesGen from "./typesGenerated";
4-
import { delay } from "utils/delay";
4+
// This needs to include the `../`, otherwise it breaks when importing into
5+
// vscode-coder.
6+
import { delay } from "../utils/delay";
57
import userAgentParser from "ua-parser-js";
68

79
// Adds 304 for the default axios validateStatus function

0 commit comments

Comments
 (0)