We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4b21c commit 8502233Copy full SHA for 8502233
lib/utils/plugins.ts
@@ -91,7 +91,10 @@ function exposeDecorated<P extends Record<string, any>>(
91
};
92
}
93
94
-function getDecorated<P extends Record<string, any>>(parent: React.ComponentType<P>, name: string): React.ComponentClass<P> {
+function getDecorated<P extends Record<string, any>>(
95
+ parent: React.ComponentType<P>,
96
+ name: string
97
+): React.ComponentClass<P> {
98
if (!decorated[name]) {
99
let class_ = exposeDecorated(parent);
100
(class_ as any).displayName = `_exposeDecorated(${name})`;
0 commit comments