From c83bd7900f2b5f70b56f43c641efe1f17afc533c Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Thu, 17 Jun 2021 03:17:05 -0700 Subject: [PATCH] Deprecate Native plugins Reviewed By: fabiomassimo Differential Revision: D29163280 fbshipit-source-id: 368e966bf86cc0de1ee0125a6b1166811ef6d2f0 --- desktop/app/src/Client.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/app/src/Client.tsx b/desktop/app/src/Client.tsx index cf1ce28c5..48a41777a 100644 --- a/desktop/app/src/Client.tsx +++ b/desktop/app/src/Client.tsx @@ -251,6 +251,7 @@ export default class Client extends EventEmitter { .filter(notNull) .map(([id, type, title]) => { // TODO put this in another component, and make the "types" registerable + console.warn(`TableNative plugins are deprecated: ${id}`); switch (type) { case 'Table': return createTableNativePlugin(id, title);