Fix: Update return type for getActionsDefaultField to Field. (#110347)

This commit is contained in:
Prajwal Awate
2025-08-29 20:49:35 -05:00
committed by GitHub
parent ea296f79b2
commit 0d782bdedb
+1 -2
View File
@@ -150,8 +150,7 @@ export const buildActionRequest = (action: Action, replaceVariables: Interpolate
};
/** @internal */
// @TODO update return type
export const getActionsDefaultField = (dataLinks: DataLink[] = [], actions: Action[] = []) => {
export const getActionsDefaultField = (dataLinks: DataLink[] = [], actions: Action[] = []): Field => {
return {
name: 'Default field',
type: FieldType.string,