Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: format
  • Loading branch information
jaaydenh committed May 2, 2025
commit a94f0937baf64661d682aa389895e7dec1471c94
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export const CreateWorkspacePageViewExperimental: FC<

for (const [fieldName, isTouched] of Object.entries(form.touched)) {
if (isTouched && fieldName !== parameter.name) {
const param = parameters.find(p => p.name === fieldName);
const param = parameters.find((p) => p.name === fieldName);
if (param?.value) {
formInputs[fieldName] = param.value;
}
Expand Down