Skip to content

Commit

Permalink
fix: increase zip download limit to not show the msg in beta
Browse files Browse the repository at this point in the history
  • Loading branch information
MellyGray committed Dec 14, 2023
1 parent aa622e3 commit c9cb3fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function mockedSettingResponse<T>(name: SettingName): Setting<T> {
case SettingName.ZIP_DOWNLOAD_LIMIT:
return {
name: SettingName.ZIP_DOWNLOAD_LIMIT,
value: new ZipDownloadLimit(1, FileSizeUnit.BYTES)
value: new ZipDownloadLimit(1, FileSizeUnit.TERABYTES)
} as Setting<T>
case SettingName.ALLOWED_EXTERNAL_STATUSES:
return {
Expand Down

0 comments on commit c9cb3fe

Please sign in to comment.