Skip to content

Commit

Permalink
Fix: Extension code change reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
antonyagustine committed Dec 7, 2023
1 parent c938306 commit 5c8e873
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,7 @@ export default class ImportExtensions extends BaseClass {
return;
}

const apiContent = [];

for (const [uid, content] of Object.entries(this.extensions)) {
(content as Record<string, any>).uid = uid;
apiContent.push(content);
}
const apiContent = values(this.extensions);

const onSuccess = ({ response, apiData: { uid, title } = { uid: null, title: '' } }: any) => {
this.extSuccess.push(response);
Expand Down

0 comments on commit 5c8e873

Please sign in to comment.