commerce/lib/utils/image.ts
2025-03-15 11:15:46 +00:00

9 lines
195 B
TypeScript

import { ImageSource } from "../store/types";
export const getImageUrl = (source: ImageSource): string => {
if (source.type === "remote") {
return source.url;
}
return source.path;
};