Skip to content

Commit

Permalink
Merge 99d5357 into b1c0c12
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala authored Dec 27, 2023
2 parents b1c0c12 + 99d5357 commit 30265ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Modals/CustomLayoutModal/CustomLayoutModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export default class CustomLayoutModal extends React.PureComponent<Props, State>
}

handleSubmit = (sdk: SDKVersion) => {
const { onCreateProject, onClose, isSDK7TemplatesEnabled } = this.props
const { onCreateProject, onClose } = this.props
const { name, description, rows, cols } = this.state
onCreateProject(name, description, fromLayout(rows, cols), isSDK7TemplatesEnabled ? SDKVersion.SDK7 : sdk)
onCreateProject(name, description, fromLayout(rows, cols), sdk)
onClose()
}

Expand Down

0 comments on commit 30265ed

Please sign in to comment.