Skip to content

fix: 앱 페이지 동작 버그 수정#563

Open
manNomi wants to merge 1 commit into
mainfrom
fix/issue-561-app-page-bugs
Open

fix: 앱 페이지 동작 버그 수정#563
manNomi wants to merge 1 commit into
mainfrom
fix/issue-561-app-page-bugs

Conversation

@manNomi

@manNomi manNomi commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

관련 이슈

작업 내용

  • 마이 > 고객센터 문의 클릭 시 카카오 오픈채팅 앱 스킴을 먼저 호출하고, 실패하면 기존 오픈채팅 URL로 폴백하도록 수정했습니다.
  • 마이페이지 첫 화면의 중복 좌우 패딩을 제거해 앱 버전에서 콘텐츠 폭이 과하게 줄어들지 않도록 했습니다.
  • 로그인 페이지 좌측 상단에 뒤로가기 버튼을 추가하고, 히스토리가 없을 때는 홈으로 이동하도록 처리했습니다.
  • 클릭형 LinkedTextWithIcon이 폼 안에서 submit으로 동작하지 않도록 type="button"을 명시했습니다.

특이 사항

  • 앱/WebView에서 카카오 오픈채팅 스킴 호출은 기기 및 WebView 정책에 따라 원래 오픈채팅 URL 폴백으로 열릴 수 있습니다.
  • 로컬 검증 중 Node 엔진 경고가 표시되었습니다. 현재 로컬은 Node v23.10.0이고, 프로젝트 요구 버전은 Node 22.x입니다.

리뷰 요구사항 (선택)

  • 실제 앱 WebView에서 고객센터 문의 클릭 시 카카오톡 오픈채팅 참여 화면으로 정상 진입하는지 확인 부탁드립니다.

@vercel

vercel Bot commented Jun 19, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
solid-connect-university-web Error Error Jun 21, 2026 7:07am
solid-connection-web Ready Ready Preview, Comment Jun 21, 2026 7:07am
1 Skipped Deployment
Project Deployment Actions Updated (UTC)
solid-connect-web-admin Skipped Skipped Jun 21, 2026 7:07am

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@manNomi, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 59 minutes and 39 seconds. Learn how PR review limits work.

Your organization has run out of usage credits. Purchase more credits in the billing tab to continue.

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 29606dd2-62c6-49db-99f6-88b9093e35ff

📥 Commits

Reviewing files that changed from the base of the PR and between c00c55a and 067e7d1.

📒 Files selected for processing (4)
  • apps/web/src/app/login/LoginContent.tsx
  • apps/web/src/app/my/_ui/MyProfileContent/index.tsx
  • apps/web/src/components/ui/LinkedTextWithIcon/index.tsx
  • apps/web/src/utils/openKakaoOpenChat.ts
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/issue-561-app-page-bugs

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@manNomi

manNomi commented Jun 21, 2026

Copy link
Copy Markdown
Contributor Author

@codex reveiw

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 067e7d19b1

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +27 to +30
const openedWindow = window.open(url, "_blank", "noopener,noreferrer");

if (!openedWindow) {
window.location.href = url;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Avoid treating noopener windows as blocked

When this helper runs from a user click, such as a contact URL that does not match open.kakao.com, passing noopener,noreferrer makes a successful window.open return null, so this branch also navigates the current tab/WebView to the same URL. That regresses the previous _blank link behavior by leaving My Page or opening the contact page twice even though the popup succeeded; use a popup-blocking check that does not rely on the handle returned when noopener is set.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

앱 런칭 후 일부 페이지 동작 및 레이아웃 버그 수정

1 participant