diff --git a/frontend/src/components/CookbookRecipeTile.tsx b/frontend/src/components/CookbookRecipeTile.tsx index c090f26..31a73c3 100644 --- a/frontend/src/components/CookbookRecipeTile.tsx +++ b/frontend/src/components/CookbookRecipeTile.tsx @@ -1,6 +1,7 @@ import { type RecipeSmall } from "../types/Recipe" import { Link } from 'react-router-dom'; import StarRating from '../components/StarRating.tsx' +import TimeDisplay from "../components/TimeDisplay.tsx" function CookbookRecipeTile({ recipe }: { recipe: RecipeSmall }) { @@ -13,7 +14,7 @@ function CookbookRecipeTile({ recipe }: { recipe: RecipeSmall }) {
Thanks for checking out my app! Database write operations are disabled in demo mode.
diff --git a/frontend/src/components/Modal.tsx b/frontend/src/components/Modal.tsx index 8985471..5ee8453 100644 --- a/frontend/src/components/Modal.tsx +++ b/frontend/src/components/Modal.tsx @@ -10,7 +10,7 @@ const Modal = ({ isOpen, onClose, message, confirmAction, cancelAction }: ModalP if (!isOpen) return null; return ( -