Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1011 배포 #412

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function CommentListSection() {
useShowComplainttModal();

const handleComplaintButtonClick = () => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_REPORT_URL);
};

/**
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/HomeAboutFooterSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const HomeAboutFooterSection = ({
<Body3
style={{ cursor: 'pointer' }}
onClick={() => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_SERVICE_CENTER_URL);
}}
>
고객센터
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export const Profile = ({
</ServiceItem>
<ServiceItem
onClick={() => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_SERVICE_CENTER_URL);
}}
>
정산 문의
Expand Down
2 changes: 1 addition & 1 deletion src/components/Seller/SellerChat/ChatReportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const ChatReportModal = () => {
width="100%"
height="5.2rem"
onClick={() => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_REPORT_URL);
}}
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Buyer/BuyerLetter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const BuyerLetter = () => {
//

const handleComplaintButtonClick = () => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_REPORT_URL);
};

if (isLoading) {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Buyer/BuyerMypage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const BuyerMypage = () => {
<div
className="additional-box"
onClick={() => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_SERVICE_CENTER_URL);
}}
>
<Body2 color={Grey1}>결제 문의</Body2>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Seller/SellerLetter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const SellerLetter = () => {
//
//
const handleComplaintButtonClick = () => {
window.open(process.env.REACT_APP_TEMP_CUSTOMER_SERVICE_URL);
window.open(process.env.REACT_APP_REPORT_URL);
};

// 모달 활성화 시 스크롤락
Expand Down
Loading