Index: frontend/src/pages/Reviews.tsx
===================================================================
--- frontend/src/pages/Reviews.tsx	(revision 57cef893dba40c5cda26b84a7b528f37c8b55205)
+++ frontend/src/pages/Reviews.tsx	(revision bcfe761a33d811acf542bba1c16fbc11aea875af)
@@ -1,5 +1,5 @@
-import { CheckCircle, Eye, Trash2, XCircle } from "lucide-react";
+import { ArrowLeft, CheckCircle, Eye, Trash2, XCircle } from "lucide-react";
 import { useEffect, useRef, useState } from "react";
-import { useLocation } from "react-router-dom";
+import { useLocation, useNavigate } from "react-router-dom";
 import axiosInstance from "../api/axiosInstance";
 import { fetchSubjects } from "../api/subjects";
@@ -46,4 +46,5 @@
 	const [hasSearched, setHasSearched] = useState(false);
 	const dropdownRef = useRef<HTMLDivElement>(null);
+	const navigate = useNavigate();
 	const code = location.state?.code || "";
 	useEffect(() => {
@@ -161,4 +162,14 @@
 	return (
 		<div className="max-w-7xl mx-auto p-4 md:p-6 bg-white min-h-screen">
+			<button
+				onClick={() => navigate(code ? `/subjects/${code}` : "/")}
+				className="flex items-center text-gray-600 hover:text-gray-900 mb-4"
+			>
+				<ArrowLeft className="w-5 h-5 mr-2" />
+				<span className="text-sm md:text-base">
+					Назад кон
+					{code ? " преглед на предметот" : " домашната страна"}
+				</span>
+			</button>
 			<h1 className="text-2xl md:text-3xl font-bold mb-6 md:mb-8">
 				{isAdmin ? "Администраторски панел" : "Информации од студенти"}
@@ -341,9 +352,5 @@
 												...prev,
 												my_reviews: newMyReviews,
-												subject: newMyReviews ? "all" : prev.subject,
 											}));
-											if (newMyReviews) {
-												setSelectedSubject(null);
-											}
 										}}
 										className="form-checkbox h-5 w-5 text-blue-600"
