Skip to content

Commit af87b63

Browse files
committed
fix: format
1 parent 269dda0 commit af87b63

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

site/src/pages/WorkspacesPage/BatchUpdateModalForm.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export const TransitioningWorkspaces: Story = {
157157
1 + ACTIVE_BUILD_STATUSES.length,
158158
);
159159

160-
for (const [i, status] of ACTIVE_BUILD_STATUSES.entries() ) {
160+
for (const [i, status] of ACTIVE_BUILD_STATUSES.entries()) {
161161
const mutable = workspaces[i] as MutableWorkspace;
162162
mutable.latest_build.status = status;
163163
}

site/src/pages/WorkspacesPage/BatchUpdateModalForm.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ const PanelListItem: FC<PropsWithChildren> = ({ children }) => {
142142
<li className="[&:not(:last-child)]:border-b-border [&:not(:last-child)]:border-b [&:not(:last-child)]:border-solid border-0">
143143
{children}
144144
</li>
145-
)
146-
}
145+
);
146+
};
147147

148148
type TemplateNameChangeProps = Readonly<{
149149
oldTemplateVersionName: string;
@@ -624,5 +624,3 @@ type BatchUpdateModalFormProps = Readonly<{
624624
onCancel: () => void;
625625
onSubmit: () => void;
626626
}>;
627-
628-

0 commit comments

Comments
 (0)