diff --git a/src/panels/corpglory-dataexporter-panel/components/Panel.tsx b/src/panels/corpglory-dataexporter-panel/components/Panel.tsx index 614586f..60ef817 100644 --- a/src/panels/corpglory-dataexporter-panel/components/Panel.tsx +++ b/src/panels/corpglory-dataexporter-panel/components/Panel.tsx @@ -60,7 +60,7 @@ export function Panel({ width, height, timeRange, eventBus, timeZone }: Props) { const [panelStatus, setPanelStatus] = useState(PanelStatus.LOADING); function setPanelStatusWithValidate(status: PanelStatus): void { - if (panelStatus === PanelStatus.DATASOURCE_ERROR || panelStatus === PanelStatus.PERMISSION_ERROR) { + if (panelStatus === PanelStatus.PERMISSION_ERROR) { return; } return setPanelStatus(status);