Skip to content

Commit 64c38b3

Browse files
Fix final formatting issues in ProxyContext.tsx
- Reorder imports to match biome requirements - Remove empty line as required by formatter Co-authored-by: kylecarbs <7122116+kylecarbs@users.noreply.github.com>
1 parent 0513fb9 commit 64c38b3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

site/src/contexts/ProxyContext.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { cachedQuery } from "api/queries/util";
33
import type { Region, WorkspaceProxy } from "api/typesGenerated";
44
import { useAuthenticated } from "hooks";
55
import { useEmbeddedMetadata } from "hooks/useEmbeddedMetadata";
6-
import { useMutation, useQuery, useQueryClient } from "react-query";
76
import {
87
type FC,
98
type PropsWithChildren,
@@ -14,6 +13,7 @@ import {
1413
useMemo,
1514
useState,
1615
} from "react";
16+
import { useMutation, useQuery, useQueryClient } from "react-query";
1717

1818
import { type ProxyLatencyReport, useProxyLatency } from "./useProxyLatency";
1919

@@ -92,7 +92,6 @@ export const ProxyContext = createContext<ProxyContextValue | undefined>(
9292
*/
9393
export const ProxyProvider: FC<PropsWithChildren> = ({ children }) => {
9494
const queryClient = useQueryClient();
95-
9695
// Fetch user proxy settings from API
9796
const userProxyQuery = useQuery({
9897
queryKey: ["userProxySettings"],

0 commit comments

Comments
 (0)