* Show recipe/example content in modal
( filePath: string, type: "recipe" | "example" )
| 310 | * Show recipe/example content in modal |
| 311 | */ |
| 312 | async function showRecipeContent( |
| 313 | filePath: string, |
| 314 | type: "recipe" | "example" |
| 315 | ): Promise<void> { |
| 316 | // Use existing modal infrastructure |
| 317 | const { openFileModal } = await import("../modal"); |
| 318 | await openFileModal(filePath, type); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * Update results count display |
no test coverage detected