Skip to content

Commit

Permalink
Merge pull request #128 from KUIT-Space/feat#96-space-home
Browse files Browse the repository at this point in the history
Feat#96 space home
  • Loading branch information
YangJJune authored Aug 20, 2024
2 parents 7334295 + 0061fd5 commit 3cd17a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/PayPage/CreateRequestPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const CreateRequestPage1 = ({
setBankName: React.Dispatch<React.SetStateAction<string>>;
}) => {
const [bankData, setBankData] = useState<BankInfo[] | undefined>([]);
const [bankValue, setBankValue] = useState("");
const [bankValue, setBankValue] = useState("๊ตญ๋ฏผ์€ํ–‰");
const [acc, setAcc] = useState("");

useEffect(() => {
Expand Down Expand Up @@ -155,10 +155,10 @@ const CreateRequestPage2 = ({

useEffect(() => {
const id = Number(localStorage.getItem("spaceId"));
setCheckUsers(new Set<number>());

getAllMemberApi(id, setUserInfoData);
getAllChatMemberApi(id, setChatUserInfoData).then((res) =>
console.log("chatUser", chatUserInfoData),
);
getAllChatMemberApi(id, setChatUserInfoData);
}, []);

const checkUserHandler = (id: number) => {
Expand Down

0 comments on commit 3cd17a7

Please sign in to comment.