fix(fe): restore TypeTag.tsx and fix lint errors blocking CI#228
fix(fe): restore TypeTag.tsx and fix lint errors blocking CI#228wemeet-donghyunkwon wants to merge 1 commit into
Conversation
TypeTag.tsx was accidentally deleted in 86761c1 causing all frontend builds to fail. Also fixes prettier formatting in DetailPage and import ordering in NotFoundPage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
📋 둘러보기네 개의 파일이 수정되었습니다: 2026년 4월 12일 GitHub Actions CI 안정화 세션 계획 문서, 거래 유형을 표시하는 새로운 📊 변경 사항
⏱️ 예상 코드 리뷰 노력🎯 2 (Simple) | ⏱️ ~12 분 🔗 관련 가능성 있는 PR
🐰 축하 시
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/sessions/2026-04-12_1_plan.md`:
- Around line 27-36: Add a blank line immediately before and after the markdown
table under the "## 작업 계획" heading to satisfy markdownlint MD058 (i.e., ensure
the table is surrounded by empty lines); update the area between the "## 작업 계획"
heading and the following "## 성능 설계" section so the table has one empty line
above and one empty line below, and remove any extra or stray blank lines around
the table to keep spacing consistent.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 94927090-d44c-4912-a04a-50be5c35c7e6
📒 Files selected for processing (4)
docs/sessions/2026-04-12_1_plan.mdfrontend/tiggle/src/components/atoms/TypeTag/TypeTag.tsxfrontend/tiggle/src/pages/DetailPage/index.tsxfrontend/tiggle/src/pages/NotFoundPage.tsx
| ## 작업 계획 | ||
| | # | 작업 | 프로젝트 | 파일 | 난이도 | | ||
| |---|------|---------|------|--------| | ||
| | 1 | TypeTag.tsx 복구 | Tiggle | atoms/TypeTag/TypeTag.tsx | S | | ||
| | 2 | prettier/import 오류 수정 | Tiggle | DetailPage, NotFoundPage | S | | ||
| | 3 | FE 빌드 + BE 테스트 로컬 검증 | Tiggle | - | S | | ||
| | 4 | Flutter 테스트 CI 추가 | Calynda | ci.yml, deploy-nas.yml | M | | ||
| | 5 | AIVA-SaaS 현황 분석 | AIVA-SaaS | - | S | | ||
|
|
||
| ## 성능 설계 |
There was a problem hiding this comment.
Markdownlint MD058 경고를 해소해주세요.
Line 28의 테이블이 빈 줄로 둘러싸여 있지 않아 blanks-around-tables 경고가 발생합니다. 문서 lint 안정화를 위해 테이블 전/후에 빈 줄을 넣는 것이 좋습니다.
수정 예시
## 작업 계획
+
| # | 작업 | 프로젝트 | 파일 | 난이도 |
|---|------|---------|------|--------|
| 1 | TypeTag.tsx 복구 | Tiggle | atoms/TypeTag/TypeTag.tsx | S |
| 2 | prettier/import 오류 수정 | Tiggle | DetailPage, NotFoundPage | S |
| 3 | FE 빌드 + BE 테스트 로컬 검증 | Tiggle | - | S |
| 4 | Flutter 테스트 CI 추가 | Calynda | ci.yml, deploy-nas.yml | M |
| 5 | AIVA-SaaS 현황 분석 | AIVA-SaaS | - | S |
+
## 성능 설계📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| ## 작업 계획 | |
| | # | 작업 | 프로젝트 | 파일 | 난이도 | | |
| |---|------|---------|------|--------| | |
| | 1 | TypeTag.tsx 복구 | Tiggle | atoms/TypeTag/TypeTag.tsx | S | | |
| | 2 | prettier/import 오류 수정 | Tiggle | DetailPage, NotFoundPage | S | | |
| | 3 | FE 빌드 + BE 테스트 로컬 검증 | Tiggle | - | S | | |
| | 4 | Flutter 테스트 CI 추가 | Calynda | ci.yml, deploy-nas.yml | M | | |
| | 5 | AIVA-SaaS 현황 분석 | AIVA-SaaS | - | S | | |
| ## 성능 설계 | |
| ## 작업 계획 | |
| | # | 작업 | 프로젝트 | 파일 | 난이도 | | |
| |---|------|---------|------|--------| | |
| | 1 | TypeTag.tsx 복구 | Tiggle | atoms/TypeTag/TypeTag.tsx | S | | |
| | 2 | prettier/import 오류 수정 | Tiggle | DetailPage, NotFoundPage | S | | |
| | 3 | FE 빌드 + BE 테스트 로컬 검증 | Tiggle | - | S | | |
| | 4 | Flutter 테스트 CI 추가 | Calynda | ci.yml, deploy-nas.yml | M | | |
| | 5 | AIVA-SaaS 현황 분석 | AIVA-SaaS | - | S | | |
| ## 성능 설계 |
🧰 Tools
🪛 markdownlint-cli2 (0.22.0)
[warning] 28-28: Tables should be surrounded by blank lines
(MD058, blanks-around-tables)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@docs/sessions/2026-04-12_1_plan.md` around lines 27 - 36, Add a blank line
immediately before and after the markdown table under the "## 작업 계획" heading to
satisfy markdownlint MD058 (i.e., ensure the table is surrounded by empty
lines); update the area between the "## 작업 계획" heading and the following "## 성능
설계" section so the table has one empty line above and one empty line below, and
remove any extra or stray blank lines around the table to keep spacing
consistent.
Summary
86761c1커밋에서 실수로 삭제된 컴포넌트 복원 (FE 빌드 실패의 근본 원인)검증
Test plan
🤖 Generated with Claude Code
Summary by CodeRabbit
릴리스 노트
New Features
Style
Documentation