not making api call for edit basic view antd d
<Edit
title={title}
dataProviderName='unifiedDataProvider'
resource='post'
recordItemId='1'
footerButtons={() => (
<>
<Button>Cancel</Button>
<SaveButton
{...saveButtonProps}
disabled={
joinedColumnList === undefined || joinedColumnList?.length === 0
}
>
Save
</SaveButton>
</>
)}
>
<JoinColumnForm
formLoading={formLoading}
onFinishHandler={onFinishHandler}
formProps={formProps}
showSearch={true}
setOtherColumns={setOtherColumns}
otherColumns={otherColumns}
column1={column1}
column2={column2}
form={form}
/>
</Edit>
not calling the get one api for the above edit view from antd
title={title}
dataProviderName='unifiedDataProvider'
resource='post'
recordItemId='1'
footerButtons={() => (
<>
<Button>Cancel</Button>
<SaveButton
{...saveButtonProps}
disabled={
joinedColumnList === undefined || joinedColumnList?.length === 0
}
>
Save
</SaveButton>
</>
)}
>
<JoinColumnForm
formLoading={formLoading}
onFinishHandler={onFinishHandler}
formProps={formProps}
showSearch={true}
setOtherColumns={setOtherColumns}
otherColumns={otherColumns}
column1={column1}
column2={column2}
form={form}
/>
</Edit>
not calling the get one api for the above edit view from antd
