8000 fix: format · coder/coder@a94f093 · GitHub
[go: up one dir, main page]

Skip to content

Commit a94f093

Browse files
committed
fix: format
1 parent b93d804 commit a94f093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export const CreateWorkspacePageViewExperimental: FC<
224224

225225
for (const [fieldName, isTouched] of Object.entries(form.touched)) {
226226
if (isTouched && fieldName !== parameter.name) {
227-
const param = parameters.find(p => p.name === fieldName);
227+
const param = parameters.find((p) => p.name === fieldName);
228228
if (param?.value) {
229229
formInputs[fieldName] = param.value;
230230
}

0 commit comments

Comments
 (0)
0