Skip to content

Commit

Permalink
[FE][Fix] Update FundingAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
kipperhr committed Apr 3, 2024
1 parent dfc32e3 commit bdbea7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FE/src/components/Funding/api/FundingAPI.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import axios from "axios";
import { useNavigate } from "react-router";
//펀딩 상세 조회 api
async function fetchDetailFunding(token, fundingId, setData) {
Expand Down Expand Up @@ -125,7 +126,7 @@ async function getFundingFeed(token, setData) {
},
params: {
page: 0,
size: 100,
size: 8,
sort: "", // sort가 필요하다면 'columnName,asc' 또는 'columnName,desc' 형식의 값을 설정하세요.
},
},
Expand Down
1 change: 1 addition & 0 deletions FE/src/components/Funding/pages/FundingMain.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React, { useEffect, useState } from "react";
import StoryList from "../component/StoryList";
import FundingList from "../component/FundingList";
import ScrollToTopButton from "../../UI/ScrollToTop";
Expand Down

0 comments on commit bdbea7d

Please sign in to comment.