verou
2025-03-26 669072c5f71421f937cd46a1cc8f4b838953e895
rsf-admin/src/page/components/ImportModal.jsx
@@ -80,7 +80,9 @@
    };
    const downloadTemplate = async (type) => {
        const res = await request.post(`/${value}/template/download`, {})
        const res = await request.post(`/${value}/template/download`, {}, {
            responseType: "blob",
        })
        const url = window.URL.createObjectURL(
            new Blob([res.data], { type: res.headers["content-type"] }),
        );