From 08483c1a9208598b6bca5fdab55e5854296fc894 Mon Sep 17 00:00:00 2001 From: Sasi Date: Tue, 1 Nov 2022 15:48:57 +0530 Subject: [PATCH] fix: suggestions overflow --- src/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 68111f6c7..de94794f0 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -46,7 +46,7 @@ export const IMAGE_CDN_URL = IS_MAINNET export const VIDEO_CDN_URL = 'https://cdn.livepeer.com' // ipfs -export const IPFS_FREE_UPLOAD_LIMIT = 500 +export const IPFS_FREE_UPLOAD_LIMIT = IS_MAINNET ? 500 : 100 export const IPFS_GATEWAY = 'https://lens.infura-ipfs.io/ipfs/' export const EVER_ENDPOINT = 'https://endpoint.4everland.co' export const EVER_REGION = 'us-west-2'