Skip to content

Commit

Permalink
feat: Commit out unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Yongbeom-Kim committed Nov 13, 2024
1 parent 3c8301b commit 4640b87
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions peerprep/frontend/src/views/UserServiceViews/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ const Login = () => {
const [error, setError] = useState(""); // State to store error messages
const navigate = useNavigate();

// Temp stubs needed to move into Collab stub
const topic = "algorithms";
const difficulty = "easy";
const sessionId ="session1";
const questionId="Q-42: Write an algorithm for Radix Sort";
// YB: please coment out variables that you don't use because they get in the way of bundling the code.
// // Temp stubs needed to move into Collab stub
// const topic = "algorithms";
// const difficulty = "easy";
// const sessionId ="session1";
// const questionId="Q-42: Write an algorithm for Radix Sort";

const handleLogin = async () => {
try {
Expand Down

0 comments on commit 4640b87

Please sign in to comment.