PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/PageCreator/api/DataApi.js +2 -3 3.1.1 → trunk View file →
@@ -132,12 +132,10 @@
132 132 };
133 133 };
134 134
135 135 export const getPageImages = async ({ pageProfile }) => {
136 - const { aiSiteType, aiSiteCategory, aiDescription, aiKeywords } = pageProfile;
136 + const { aiDescription, aiKeywords } = pageProfile;
137 137 const search = new URLSearchParams({
138 - aiSiteType,
139 - aiSiteCategory,
140 138 aiDescription,
141 139 aiKeywords,
142 140 ...extraBody,
143 141 source: 'page-creator',
@@ -177,8 +175,9 @@
177 175 siteQuestions: [],
178 176 wpLanguage,
179 177 partnerId,
180 178 pluginGroupId,
179 + source: 'page-creator',
181 180 });
182 181
183 182 let response;
184 183