From 1ceab15f2d281fb7afad940caca1d2e9cfae2015 Mon Sep 17 00:00:00 2001 From: Afsal <128362946+afsalz@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:25:41 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20added=20playground=20.l?= =?UTF-8?q?ottie=20error=20to=20console=20(#245)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/dotlottie-playground/src/components/playground.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dotlottie-playground/src/components/playground.tsx b/apps/dotlottie-playground/src/components/playground.tsx index 200c44ff..e6cc8900 100644 --- a/apps/dotlottie-playground/src/components/playground.tsx +++ b/apps/dotlottie-playground/src/components/playground.tsx @@ -83,6 +83,7 @@ export const Playground: React.FC = ({ file: dotLottieFile, fil setDotLottie(newInstance); } catch (error) { toast(error.message, { type: 'error' }); + throw error; } } },