Skip to content

Commit 62a89d8

Browse files
committed
FMT
1 parent a3bd2a0 commit 62a89d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

site/src/hooks/useClickableTableRow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
*/
1616
import type { TableRowProps } from "@mui/material/TableRow";
1717
import type { MouseEventHandler } from "react";
18+
import { cn } from "utils/cn";
1819
import {
1920
type ClickableAriaRole,
2021
type UseClickableResult,
2122
useClickable,
2223
} from "./useClickable";
23-
import { cn } from "utils/cn";
2424

2525
type UseClickableTableRowResult<
2626
TRole extends ClickableAriaRole = ClickableAriaRole,

site/src/pages/WorkspacesPage/LastUsed.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ export const LastUsed: FC<LastUsedProps> = ({ lastUsedAt }) => {
4646
<span data-chromatic="ignore">{message}</span>
4747
</Stack>
4848
);
49-
};
49+
};

site/src/pages/WorkspacesPage/WorkspacesPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,4 +239,4 @@ export const WorkspacesPageView: FC<WorkspacesPageViewProps> = ({
239239
)}
240240
</Margins>
241241
);
242-
};
242+
};

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ import { WorkspaceStatusBadge } from "modules/workspaces/WorkspaceStatusBadge/Wo
3434
import { LastUsed } from "pages/WorkspacesPage/LastUsed";
3535
import { type FC, type ReactNode, useMemo } from "react";
3636
import { useNavigate } from "react-router-dom";
37+
import { cn } from "utils/cn";
3738
import { getDisplayWorkspaceTemplateName } from "utils/workspace";
3839
import { WorkspacesEmpty } from "./WorkspacesEmpty";
39-
import { cn } from "utils/cn";
4040

4141
export interface WorkspacesTableProps {
4242
workspaces?: readonly Workspace[];

0 commit comments

Comments
 (0)