From b971a34fcc728fc305a04d05e20cb81c8deeb4a5 Mon Sep 17 00:00:00 2001 From: "Juan C. Tello" Date: Tue, 27 Aug 2024 10:42:09 +0200 Subject: [PATCH 1/2] fix: removed unnecessary authorization information --- drag-n-drop-chart-library/src/App.js | 1 - drag-n-drop-chart-library/src/Components/FlexComponent.js | 4 +--- drag-n-drop-chart-library/src/Reference/FlexConfig.js | 5 ----- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/drag-n-drop-chart-library/src/App.js b/drag-n-drop-chart-library/src/App.js index 05c6866..df45c8e 100644 --- a/drag-n-drop-chart-library/src/App.js +++ b/drag-n-drop-chart-library/src/App.js @@ -48,7 +48,6 @@ export default function App() { minHeight={50} bounds="window"> diff --git a/drag-n-drop-chart-library/src/Components/FlexComponent.js b/drag-n-drop-chart-library/src/Components/FlexComponent.js index 6531f88..0cd4892 100644 --- a/drag-n-drop-chart-library/src/Components/FlexComponent.js +++ b/drag-n-drop-chart-library/src/Components/FlexComponent.js @@ -1,11 +1,9 @@ import { LuzmoVizItemComponent } from "@luzmo/react-embed"; -export default function FlexComponent ({ flexAuthorization, flexOptions }) { +export default function FlexComponent ({ flexOptions }) { return ( Date: Tue, 27 Aug 2024 10:50:00 +0200 Subject: [PATCH 2/2] fix: removed unused variable flexConfig --- drag-n-drop-chart-library/src/App.js | 1 - 1 file changed, 1 deletion(-) diff --git a/drag-n-drop-chart-library/src/App.js b/drag-n-drop-chart-library/src/App.js index df45c8e..80b7bcc 100644 --- a/drag-n-drop-chart-library/src/App.js +++ b/drag-n-drop-chart-library/src/App.js @@ -1,5 +1,4 @@ import * as React from "react"; -import flexConfig from "./Reference/FlexConfig"; import FlexComponent from "./Components/FlexComponent"; import { Rnd } from "react-rnd"; import ChartDrawer from "./Components/ChartDrawer";