From 1b8fe6f6e621b0dbaba3a2eae541ea11ac63364b Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 3 Dec 2020 08:28:13 -0600 Subject: [PATCH] Fixing max image size. --- src/shared/components/pictrs-image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/pictrs-image.tsx b/src/shared/components/pictrs-image.tsx index 87283b5..b044721 100644 --- a/src/shared/components/pictrs-image.tsx +++ b/src/shared/components/pictrs-image.tsx @@ -2,7 +2,7 @@ import { Component } from 'inferno'; const iconThumbnailSize = 96; const thumbnailSize = 256; -const maxImageSize = 1000; +const maxImageSize = 3000; interface PictrsImageProps { src: string; -- 2.44.1