Skip to content

Commit

Permalink
Merge pull request #445 from SejongPeer/feature/55
Browse files Browse the repository at this point in the history
fix: 아이디 찾기 오류 해결
  • Loading branch information
Youjiiin authored Sep 4, 2024
2 parents a461e92 + c4804ce commit 8ed33d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pages/login/find/findId/FindId.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useContext, useState, useEffect } from 'react';
import { MyContext } from '../../../../App.js';
import { useNavigate } from 'react-router-dom';
import { toast } from 'sonner';
import axios from 'axios';

import SignInBox from '../../signIn/SignInBox.js';
Expand Down
2 changes: 2 additions & 0 deletions src/pages/main/mainPage/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const BuddyHandler = async (navigate, setBuddyCount) => {
}
);
const data = await response.json();
console.log(data)

if (data.data !== null) {
setBuddyCount(data.data.matchingCompletedCount);
Expand Down Expand Up @@ -104,6 +105,7 @@ export const HonbobHandler = async navigate => {
}

const data = await response.json();
console.log(data)

if (data.data) {
switch (data.data.status) {
Expand Down

0 comments on commit 8ed33d1

Please sign in to comment.