Skip to content

Commit

Permalink
Merge pull request #72 from Spaces-Place/dusqo
Browse files Browse the repository at this point in the history
list에 이름나오게 추가
  • Loading branch information
KangYeonbae authored Dec 9, 2024
2 parents b8e6bcf + 514cb18 commit 8b07cd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/spaceList.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function SpaceList({ type: propType }) {
const [loading, setLoading] = useState(false);
const [error, setError] = useState(null);

const itemsPerPage = 10;
const itemsPerPage = 12;
const URL = process.env.REACT_APP_SPACE_API;

const getImageUrl = (space) => {
Expand Down Expand Up @@ -75,7 +75,7 @@ export default function SpaceList({ type: propType }) {
onClick={() => handleItemClick(space.space_id)}
>
<div className="list-with-box">
<div className="list-space-name">{space.name}</div>
<div className="list-space-name">{space.space_name}</div>
<div className="list-space-imagebox">
<img
src={getImageUrl(space)}
Expand Down

0 comments on commit 8b07cd7

Please sign in to comment.