updated image loading

This commit is contained in:
2025-08-22 10:38:28 +01:00
parent 44af1b21b7
commit 5ededd8e05
15 changed files with 258 additions and 120 deletions

View File

@@ -16,9 +16,9 @@ const NavigationArrow = ({ side, settingsPage }: NavigationArrowProps) => {
return;
}
if (side === "TargetDetectionFront") {
if (side === "Front") {
navigate("/front-camera-settings");
} else if (side === "TargetDetectionRear") {
} else if (side === "Rear") {
navigate("/Rear-Camera-settings");
}
};
@@ -42,10 +42,9 @@ const NavigationArrow = ({ side, settingsPage }: NavigationArrowProps) => {
</>
);
}
return (
<>
{side === "TargetDetectionFront" ? (
{side === "Front" ? (
<FontAwesomeIcon
icon={faArrowLeft}
className="absolute top-[50%] left-[2%] backdrop-blur-md hover:cursor-pointer animate-bounce"