diff --git a/ui/src/articles/components/ArticleImage.tsx b/ui/src/articles/components/ArticleImage.tsx index 01c7cca23..935af0fff 100644 --- a/ui/src/articles/components/ArticleImage.tsx +++ b/ui/src/articles/components/ArticleImage.tsx @@ -7,7 +7,8 @@ interface Props { src: string } -const proxifyImageURL = (url: string, width: number) => `${API_BASE_URL}/img?url=${encodeURIComponent(url)}&width=${width}` +const proxifyImageURL = (url: string, width: number) => + `${API_BASE_URL}/img?url=${encodeURIComponent(url)}&width=${width}` export default ({ src }: Props) => { const mobileDisplay = useMedia('(max-width: 767px)')