Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 048da5a

Browse files
committed
fix: fmt
1 parent 26ae056 commit 048da5a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

site/src/pages/CreateWorkspacePage/CreateWorkspacePageExperimental.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ const CreateWorkspacePageExperimental: FC = () => {
6666
const permissionsQuery = useQuery(
6767
templateQuery.data
6868
? checkAuthorization({
69-
checks: workspacePermissionChecks(templateQuery.data.organization_id, me.id),
69+
checks: workspacePermissionChecks(
70+
templateQuery.data.organization_id,
71+
me.id,
72+
),
7073
})
7174
: { enabled: false },
7275
);

site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ import {
2525
useMemo,
2626
useState,
2727
} from "react";
28-
import {
29-
getFormHelpers,
30-
nameValidator,
31-
} from "utils/formUtils";
28+
import { getFormHelpers, nameValidator } from "utils/formUtils";
3229
import {
3330
type AutofillBuildParameter,
3431
getInitialRichParameterValues,

0 commit comments

Comments
 (0)