We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e9d15 commit b633320Copy full SHA for b633320
devTools/sanity/index.ts
@@ -48,9 +48,14 @@ transformationStrings.forEach(async (txString, i) => {
48
49
console.log('Processing transformation:', i);
50
51
+ let url = `https://res.cloudinary.com/demo/image/upload/${txString}/sample`;
52
+ if (txString.startsWith('http')) {
53
+ url = txString;
54
+ };
55
+
56
const queryArgs = {
57
framework: 'js_2',
- url: `https://res.cloudinary.com/demo/image/upload/${txString}/sample`,
58
+ url,
59
hideActionGroups:0
60
};
61
0 commit comments