Skip to content

Commit

Permalink
💚 chore: 서버 URL 수정 #309
Browse files Browse the repository at this point in the history
  • Loading branch information
uxolrv committed Apr 16, 2023
1 parent bf77e33 commit ba04846
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Etc/PayMethod.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export default function PayMethod({ payData }: { payData: PayData }) {
orderName: `${itemOrders.data[0].item.title}, ${itemOrders.data.length} 건`,
customerName: `Pillivery`,
successUrl:
'http://ec2-43-201-37-71.ap-northeast-2.compute.amazonaws.com:8080/payments/general/success',
'http://ec2-13-209-138-42.ap-northeast-2.compute.amazonaws.com:8080/payments/general/success',
failUrl:
'http://ec2-43-201-37-71.ap-northeast-2.compute.amazonaws.com:8080/payments/fail',
'http://ec2-13-209-138-42.ap-northeast-2.compute.amazonaws.com:8080/payments/fail',
validHours: 24,
cashReceipt: {
type: '소득공제',
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Auth/SocialLogIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const SocialButton = styled.button<{ socialType: 'kakao' | 'google' }>`

export default function SocialLogIn() {
const URI =
'http://ec2-43-201-37-71.ap-northeast-2.compute.amazonaws.com:8080/oauth2/authorization';
'http://ec2-13-209-138-42.ap-northeast-2.compute.amazonaws.com:8080/oauth2/authorization';
const loginRequestHandler = (socialType: 'google' | 'kakao') => {
window.location.assign((window.location.href = `${URI}/${socialType}`));
};
Expand Down

0 comments on commit ba04846

Please sign in to comment.