Changes from Github AI

This commit is contained in:
Denis Urs Rudolph
2025-12-07 15:01:28 +01:00
parent e11b4a3dc4
commit c70cc79ff4
6 changed files with 75 additions and 8 deletions

View File

@@ -45,6 +45,6 @@ export default function BikeDetailPage() {
return null
}
return <BikeDetail bike={bike} onUpdate={fetchBike} />
return <BikeDetail bike={bike} onUpdate={() => fetchBike(params.id as string)} />
}