fix issue

This commit is contained in:
Marshal
2026-07-16 12:59:28 +00:00
parent e8e12c1363
commit b50adc4666
6 changed files with 160 additions and 12 deletions

View File

@@ -13,3 +13,6 @@ export function fileViewUrl(fileId: string, download = false): string {
const base = `${API_BASE_URL}/api/files/${fileId}`;
return download ? `${base}?download=1` : base;
}