Skip to content

Commit

Permalink
Fix dns config issue form issue while creating instance (omnistrate-o…
Browse files Browse the repository at this point in the history
  • Loading branch information
rushil95 authored Jan 28, 2025
1 parent b434c19 commit a6a64ea
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions pages/access/service/[serviceId].js
Original file line number Diff line number Diff line change
Expand Up @@ -791,16 +791,7 @@ function MarketplaceService() {
},
enableReinitialize: true,
onSubmit: (values) => {
const data = {};
for (const key in values) {
if (values[key]) {
if (values[key] === "requestParams") {
data["requestParams"] = cloneDeep(values["requestParams"]);
} else {
data[key] = values[key];
}
}
}
const data = cloneDeep(values);

async function getSchema() {
try {
Expand Down

0 comments on commit a6a64ea

Please sign in to comment.