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 bbf1034 commit 128418bCopy full SHA for 128418b
frontend/src/pages/Files/ListOfFiles.tsx
@@ -82,7 +82,7 @@ const ListOfFiles: React.FC<{ showTable?: boolean }> = ({
82
const handleOpen = async (guid: string) => {
83
try {
84
setOpening(guid);
85
- const { data } = await publicApi.get(`/v1/api/uploadFile/${guid}`, { responseType: 'arraybuffer' });
+ const { data } = await publicApi.get(`/api/v1/api/uploadFile/${guid}`, { responseType: 'arraybuffer' });
86
87
const file = new Blob([data], { type: 'application/pdf' });
88
const fileURL = window.URL.createObjectURL(file);
0 commit comments