We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d799f commit 8d5ef4cCopy full SHA for 8d5ef4c
site/src/components/Resources/AgentMetadata.tsx
@@ -1,5 +1,8 @@
1
import { watchAgentMetadata } from "api/api";
2
-import { WorkspaceAgent, WorkspaceAgentMetadata } from "api/typesGenerated";
+import type {
3
+ WorkspaceAgent,
4
+ WorkspaceAgentMetadata,
5
+} from "api/typesGenerated";
6
import { Stack } from "components/Stack/Stack";
7
import dayjs from "dayjs";
8
import {
@@ -14,7 +17,7 @@ import Skeleton from "@mui/material/Skeleton";
14
17
import { MONOSPACE_FONT_FAMILY } from "theme/constants";
15
18
import Tooltip from "@mui/material/Tooltip";
16
19
import Box, { BoxProps } from "@mui/material/Box";
-import { Interpolation, Theme } from "@emotion/react";
20
+import { type Interpolation, type Theme } from "@emotion/react";
21
22
type ItemStatus = "stale" | "valid" | "loading";
23
0 commit comments