Skip to content

Commit

Permalink
feat: 도메인 연결
Browse files Browse the repository at this point in the history
  • Loading branch information
joarthvr committed Dec 4, 2024
1 parent a2c754d commit 9793a78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/portfolio/ui/PortfolioCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const PortfolioCard = ({
<Link className={styles.cardImg} to={portFolioUrl}>
<img
alt={`${username}의 프로필 이미지`}
src={memberImageUrl || profileImg} // 이미지가 없을 경우 기본 이미지 사용
src={memberImageUrl || profileImg}
/>
</Link>
<ContactBtn userName = {username}/>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/api/baseApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import axios from 'axios';
import { useAuth } from '@/app/AuthProvider';

const api = axios.create({
baseURL: ``, // Backend API Domain 주소
baseURL: `https://api.palettee.site`,
timeout: 10_000,
withCredentials: true,
});
Expand Down

0 comments on commit 9793a78

Please sign in to comment.