-
Notifications
You must be signed in to change notification settings - Fork 4
채팅 이미지 CDN 호스트 타입 처리 및 React19 ref 타입 정합성 수정 #430
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
Changes from 6 commits
153a82e
6a35a8f
e9f1468
98b4988
3893fe4
61c46dd
7a037c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ interface ScoreData { | |
|
|
||
| const ScorePageContent = () => { | ||
| const router = useRouter(); | ||
| const searchRef = useRef<HTMLInputElement | null>(null); | ||
| const searchRef = useRef<HTMLInputElement>(null!); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: # apps/web/package.json에서 React와 `@types/react` 버전 확인
find apps/web -maxdepth 2 -name "package.json" -type f -exec sh -c 'echo "=== {} ===" && cat "$1" | jq -r ".dependencies.react, .devDependencies[\"@types/react\"], .dependencies[\"react\"]" ' _ {} \;Repository: solid-connection/solid-connect-web Length of output: 123 🏁 Script executed: # apps/web/COMPONENTS.md 확인
cat apps/web/COMPONENTS.md 2>/dev/null || echo "File not found"Repository: solid-connection/solid-connect-web Length of output: 9064 🏁 Script executed: # ScorePageContent.tsx의 searchRef 사용 전체 확인
sed -n '20,160p' apps/web/src/app/university/application/ScorePageContent.tsx | cat -nRepository: solid-connection/solid-connect-web Length of output: 6029 React 버전 불일치 해결이 필요합니다. 현재 프로젝트의 의존성 구성에 다음과 같은 버전 불일치가 있습니다:
🤖 Prompt for AI Agents |
||
|
|
||
| const [searchActive, setSearchActive] = useState(false); | ||
| const [preference, setPreference] = useState<"1순위" | "2순위" | "3순위">("1순위"); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pre-commit과 동일한 문제: 체크 미실행 시에도 성공 메시지가 출력됩니다.
Line 46에서 "skipping parity builds"를 출력하고, Line 49에서 "CI parity checks passed!"도 출력됩니다. pre-commit 훅과 동일하게 조건부 처리를 권장합니다.
🔧 제안
📝 Committable suggestion
🤖 Prompt for AI Agents