Skip to content

Commit 51ce047

Browse files
authored
fix: replace aliased import with unaliased import (#17207)
If you take a look at the comment above, these imports need to be unaliased.
1 parent c6e8662 commit 51ce047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/api/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import globalAxios, { type AxiosInstance, isAxiosError } from "axios";
2323
import type dayjs from "dayjs";
2424
import userAgentParser from "ua-parser-js";
25-
import { OneWayWebSocket } from "utils/OneWayWebSocket";
25+
import { OneWayWebSocket } from "../utils/OneWayWebSocket";
2626
import { delay } from "../utils/delay";
2727
import type { PostWorkspaceUsageRequest } from "./typesGenerated";
2828
import * as TypesGen from "./typesGenerated";

0 commit comments

Comments
 (0)