Midday / apps /engine /src /utils /logo.ts
Jules
Final deployment with all fixes and verified content
c09f67c
export function getLogoURL(id: string, ext?: string) {
return `https://cdn-engine.midday.ai/${id}.${ext || "jpg"}`;
}
export function getFileExtension(url: string) {
return url.split(".").at(-1);
}