diff --git a/web/app/components/datasets/create-from-pipeline/list/template-card/actions.tsx b/web/app/components/datasets/create-from-pipeline/list/template-card/actions.tsx
index 55a3e30d8a..9beb466c26 100644
--- a/web/app/components/datasets/create-from-pipeline/list/template-card/actions.tsx
+++ b/web/app/components/datasets/create-from-pipeline/list/template-card/actions.tsx
@@ -6,7 +6,7 @@ import Operations from './operations'
import CustomPopover from '@/app/components/base/popover'
type ActionsProps = {
- handleApplyTemplate: () => void
+ onApplyTemplate: () => void
handleShowTemplateDetails: () => void
showMoreOperations: boolean
openEditModal: () => void
@@ -15,7 +15,7 @@ type ActionsProps = {
}
const Actions = ({
- handleApplyTemplate,
+ onApplyTemplate,
handleShowTemplateDetails,
showMoreOperations,
openEditModal,
@@ -28,7 +28,7 @@ const Actions = ({