Skip to content

Commit

Permalink
Merge pull request #114 from MOVIEJOJO7/Feature/#113
Browse files Browse the repository at this point in the history
Fix : users 페이지 스크롤 기능 추가
  • Loading branch information
JitHoon authored Nov 16, 2023
2 parents 31be03b + 064f6eb commit 872acce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/users/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Users = async () => {
const allUsersExceptMe = allUsers.filter((user) => user.id !== myUser.id);

return (
<section className="w-full h-full bg-white">
<section className="w-full h-full bg-white overflow-y-scroll">
<Header />
<div className="px-4">
<MyProfile user={myUser} />
Expand Down

0 comments on commit 872acce

Please sign in to comment.