diff --git a/client/src/components/Etc/PayMethod.tsx b/client/src/components/Etc/PayMethod.tsx index bd60c0b4..ea67bf05 100644 --- a/client/src/components/Etc/PayMethod.tsx +++ b/client/src/components/Etc/PayMethod.tsx @@ -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: '소득공제', diff --git a/client/src/pages/Auth/SocialLogIn.tsx b/client/src/pages/Auth/SocialLogIn.tsx index eda4b88b..232be64b 100644 --- a/client/src/pages/Auth/SocialLogIn.tsx +++ b/client/src/pages/Auth/SocialLogIn.tsx @@ -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}`)); };