From 8502233c7499878d5e6267f0a68f7114a18886b3 Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Thu, 11 Aug 2022 13:09:38 -0700 Subject: [PATCH] Make prettier happy --- lib/utils/plugins.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/utils/plugins.ts b/lib/utils/plugins.ts index 59bec887..c9bc2493 100644 --- a/lib/utils/plugins.ts +++ b/lib/utils/plugins.ts @@ -91,7 +91,10 @@ function exposeDecorated

>( }; } -function getDecorated

>(parent: React.ComponentType

, name: string): React.ComponentClass

{ +function getDecorated

>( + parent: React.ComponentType

, + name: string +): React.ComponentClass

{ if (!decorated[name]) { let class_ = exposeDecorated(parent); (class_ as any).displayName = `_exposeDecorated(${name})`;