export const isRemoteImageUrl = (value: string | null | undefined) => { if (!value) return false; return value.startsWith('http://') || value.startsWith('https://'); };