Skip to content

Commit fd36ce9

Browse files
committed
Fix spacing in Food component props
Removed extra space in the Food component's props destructuring for consistency and code style.
1 parent 933e7e3 commit fd36ce9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/AchieveTabs/Cooking.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface dishesCookedType {
55
cookedItems: generalFormatedItemType[];
66
}
77

8-
const Food = ( {cookedItems} : dishesCookedType) => {
8+
const Food = ( {cookedItems} : dishesCookedType) => {
99
const [dishesCooked, setDishesCooked] = useState(0);
1010
if(!cookedItems) return <div>No cooking data available.</div>;
1111

0 commit comments

Comments
 (0)