Skip to content

Commit 1bf1052

Browse files
refactor(trust): increase maximum file size limit to 50MB (#1874)
Co-authored-by: Tofik Hasanov <[email protected]>
1 parent b59ce0d commit 1bf1052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api/src/trust-portal/trust-portal.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ interface VercelDomainResponse {
4444
export class TrustPortalService {
4545
private readonly logger = new Logger(TrustPortalService.name);
4646
private readonly vercelApi: AxiosInstance;
47-
private readonly MAX_FILE_SIZE_BYTES = 10 * 1024 * 1024;
47+
private readonly MAX_FILE_SIZE_BYTES = 50 * 1024 * 1024;
4848
private readonly SIGNED_URL_EXPIRY_SECONDS = 900;
4949

5050
constructor() {

0 commit comments

Comments
 (0)