lint: fix issue of no-unused-vars (#23375)

This commit is contained in:
Matri Qi
2025-08-05 11:12:30 +08:00
committed by GitHub
parent b946378b38
commit 75f722a959
14 changed files with 23 additions and 28 deletions

View File

@@ -1,9 +1,7 @@
import React from 'react'
import DatasetUpdateForm from '@/app/components/datasets/create'
type Props = {}
const DatasetCreation = async (props: Props) => {
const DatasetCreation = async () => {
return (
<DatasetUpdateForm />
)