fix tomato path

This commit is contained in:
Pas 2025-05-18 17:42:36 -06:00
parent 3dc6a0db0c
commit 9087ca7136
4 changed files with 4 additions and 4 deletions

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

Before

Width:  |  Height:  |  Size: 833 B

After

Width:  |  Height:  |  Size: 833 B

View file

@ -182,12 +182,12 @@ export function getRTIcon(
): string {
switch (type) {
case "certified_fresh":
return "/src/assets/tomatoes/Certified_Fresh.svg";
return "/tomatoes/Certified_Fresh.svg";
case "fresh":
return "/src/assets/tomatoes/Fresh.svg";
return "/tomatoes/Fresh.svg";
case "rotten":
return "/src/assets/tomatoes/Rotten.svg";
return "/tomatoes/Rotten.svg";
default:
return "/src/assets/tomatoes/Rotten.svg";
return "/tomatoes/Rotten.svg";
}
}