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 662f29d commit bbf1034Copy full SHA for bbf1034
frontend/src/pages/Files/ListOfFiles.tsx
@@ -61,7 +61,7 @@ const ListOfFiles: React.FC<{ showTable?: boolean }> = ({
61
const handleDownload = async (guid: string, fileName: string) => {
62
try {
63
setDownloading(guid);
64
- const { data } = await publicApi.get(`/v1/api/uploadFile/${guid}`, { responseType: 'blob' });
+ const { data } = await publicApi.get(`/api/v1/api/uploadFile/${guid}`, { responseType: 'blob' });
65
66
const url = window.URL.createObjectURL(new Blob([data]));
67
const link = document.createElement("a");
0 commit comments