Skip to content

Commit

Permalink
Fixed linting error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuznietsov authored Dec 6, 2021
1 parent f2a9189 commit ab791cf
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ const renderFunctionsFactories = [
* a renderer is not listed here, but is used by the Shared Workpad, it will
* not render. This includes any plugins.
*/
export const renderFunctions = [
image,
pie,
plot,
...renderFunctionsFactories.map(unboxFactory),
];
export const renderFunctions = [image, pie, plot, ...renderFunctionsFactories.map(unboxFactory)];

export const renderFunctionNames = [...renderFunctions.map((fn) => fn().name)];

0 comments on commit ab791cf

Please sign in to comment.