We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65344e0 commit e495ce6Copy full SHA for e495ce6
front/src/components/activity/ActivityProof/ActivityProof.tsx
@@ -20,9 +20,7 @@ export const ActivityProof = ({
20
onDelete,
21
}: Props): JSX.Element => {
22
const isImage = url?.match(/\.(jpeg|jpg|gif|png|PNG|JPG|JPE|GIF)$/) != null;
23
- const proxyUrl = url
24
- ? `${process.env.REACT_APP_BACKEND_URL}/activity/image-proxy?url=${url}`
25
- : "";
+ const proxyUrl = url ? url : "";
26
27
const handleDelete = () => {
28
if (onDelete && fileName) {
0 commit comments