Skip to content

Commit

Permalink
Merge pull request #1505 from argos-ci/fix-imgkit-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge authored Jan 3, 2025
2 parents 03f5ea5 + 0423ada commit 3426242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/ui/ImageKitPicture.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function ImageKitPicture(props: ImageKitPictureProps) {
}

export function imgkit(url: string, parameters: string[]): string {
if (checkIsImageKitUrl(url)) {
if (!checkIsImageKitUrl(url)) {
return url;
}
return `${url}?${parameters.join("&")}`;
Expand Down

0 comments on commit 3426242

Please sign in to comment.