Skip to content

Commit e9b6544

Browse files
committed
style: reformat codebase
1 parent a9bbe39 commit e9b6544

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

app/login/status.action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export async function getUpstreamLatency(): Promise<number> {
88
if (!response.ok) {
99
return -1;
1010
}
11-
11+
1212
return Date.now() - start;
1313
} catch (error) {
1414
console.error("Error getting upstream status:", error);

app/login/status.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1+
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip";
12
import { Circle } from "lucide-react";
23
import { getUpstreamLatency } from "./status.action";
3-
import {
4-
Tooltip,
5-
TooltipContent,
6-
TooltipTrigger,
7-
} from "@/components/ui/tooltip";
84

95
export async function UpstreamStatus() {
106
const latency = await getUpstreamLatency();

0 commit comments

Comments
 (0)