Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuna committed Jun 25, 2024
2 parents 1201ffa + b1d84ec commit 89e6b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/main/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ const Main = () => {
const teachername = getName.name;
localStorage.setItem("name", teachername);
const grade = getName.grade;
localStorage.setItem("grade", "2");
localStorage.setItem("grade", JSON.stringify(grade));
const class_num = getName.class_num;
localStorage.setItem("class_num", "2");
localStorage.setItem("class_num", JSON.stringify(class_num));
}
}, [getName]);

Expand Down

0 comments on commit 89e6b7e

Please sign in to comment.