Skip to content

fix: fix duplicated agent logs #17806

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix fmt
  • Loading branch information
BrunoQuaresma committed May 13, 2025
commit cd050ccc87c00575c6f8c3ce71f14917dead7ff5
6 changes: 1 addition & 5 deletions site/src/api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@
*
* For example, `utils/delay` must be imported using `../utils/delay` instead.
*/
import globalAxios, {
type AxiosInstance,
type AxiosRequestConfig,
isAxiosError,
} from "axios";
import globalAxios, { type AxiosInstance, isAxiosError } from "axios";
import type dayjs from "dayjs";
import userAgentParser from "ua-parser-js";
import { OneWayWebSocket } from "../utils/OneWayWebSocket";
Expand Down
2 changes: 1 addition & 1 deletion site/src/pages/WorkspacePage/WorkspacePage.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import {
renderWithAuth,
} from "testHelpers/renderHelpers";
import { server } from "testHelpers/server";
import WorkspacePage from "./WorkspacePage";
import { OneWayWebSocket } from "utils/OneWayWebSocket";
import WorkspacePage from "./WorkspacePage";

const { API, MissingBuildParameters } = apiModule;

Expand Down
Loading