diff --git a/app/client/src/mockResponses/PropertyPaneConfigResponse.tsx b/app/client/src/mockResponses/PropertyPaneConfigResponse.tsx index 38aadde87c..08e4735b98 100644 --- a/app/client/src/mockResponses/PropertyPaneConfigResponse.tsx +++ b/app/client/src/mockResponses/PropertyPaneConfigResponse.tsx @@ -327,7 +327,7 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = { { id: "9.7", propertyName: "isVisible", - label: "Visibile", + label: "Visible", controlType: "SWITCH", }, { @@ -392,6 +392,12 @@ const PropertyPaneConfigResponse: PropertyPaneConfigState = { label: "Visible", controlType: "SWITCH", }, + { + id: "11.6", + propertyName: "tableData", + label: "Enter data array", + controlType: "INPUT_TEXT", + }, ], }, { diff --git a/app/client/src/sagas/ActionSagas.ts b/app/client/src/sagas/ActionSagas.ts index 20856b3ec3..3f9789be6d 100644 --- a/app/client/src/sagas/ActionSagas.ts +++ b/app/client/src/sagas/ActionSagas.ts @@ -50,7 +50,7 @@ export function* evaluateJSONPathSaga(path: string): any { return getDynamicBoundValue(dataTree, path); } -export function* executeAPIQueryActionSaga(apiAction: ActionPayload) { +export function* executeAPIQueryActionSaga(apiAction: { actionId: string }) { const api: PageAction = yield select(getAction, apiAction.actionId); const executeActionRequest: ExecuteActionRequest = { diff --git a/app/client/src/widgets/RadioGroupWidget.tsx b/app/client/src/widgets/RadioGroupWidget.tsx index 503e894223..ccf0e9de80 100644 --- a/app/client/src/widgets/RadioGroupWidget.tsx +++ b/app/client/src/widgets/RadioGroupWidget.tsx @@ -1,4 +1,4 @@ -import * as React from "react"; +import React from "react"; import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget"; import { WidgetType } from "../constants/WidgetConstants"; import RadioGroupComponent from "../components/designSystems/blueprint/RadioGroupComponent";