Skip to content

Conversation

@leeunduck
Copy link
Owner

πŸš€ Pull Request

πŸ“ PR μœ ν˜•

  • κΈ°λŠ₯ μΆ”κ°€ (Feature)
  • 버그 μˆ˜μ • (Bug Fix)
  • μ½”λ“œ κ°œμ„  (Refactoring)
  • λ¬Έμ„œ μž‘μ—… (Docs)
  • ν™˜κ²½ μ„€μ • (Configuration)
  • μ΅œμ’… 점검 (Release Check)

πŸ” λ³€κ²½ 사항

Fade-in & Bounce μ• λ‹ˆλ©”μ΄μ…˜ μΆ”κ°€
Full page μ• λ‹ˆλ©”μ΄μ…˜ μΆ”κ°€


πŸ“Έ μŠ€ν¬λ¦°μƒ·


🚧 κ΄€λ ¨ 이슈


πŸ› οΈ μ΅œμ’… 배포 점검 리슀트

  • μ£Όμš” κΈ°λŠ₯ λ™μž‘ 확인
  • λΉŒλ“œ/배포 ν™˜κ²½ 점검
  • λ¬Έμ„œ/μ„€μ • κ²€ν† 

βœ… μ΅œμ’… 배포 점검 κ²°κ³Ό

@vercel
Copy link

vercel bot commented Nov 7, 2025

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

Project Deployment Preview Comments Updated (UTC)
custom-daily-planner Ready Ready Preview Comment Nov 7, 2025 6:28pm

@leeunduck leeunduck merged commit 725fa02 into main Nov 7, 2025
8 checks passed
@leeunduck leeunduck deleted the Feature/CDP-185-LandingAnimation branch November 7, 2025 18:31
Copy link

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

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.

ℹ️ 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 +1 to +8
import { UseInViewOptions, UseInViewResult } from "@/types/inView";
import { useEffect, useRef, useState } from "react";

export function useInView(options: UseInViewOptions = {}): UseInViewResult {
const { threshold = 0.2, rootMargin = "0px", once = true } = options;

const ref = useRef<HTMLDivElement | null>(null);
const [isInView, setIsInView] = useState(false);

Choose a reason for hiding this comment

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

P0 Badge Broaden useInView ref type beyond HTMLDivElement

The hook currently creates ref with useRef<HTMLDivElement | null> and exposes that type. In this commit the hook is attached to <section> elements in LandingFeaturesSection1 and LandingFeaturesSection2, but under the repo’s strict TypeScript configuration a RefObject<HTMLDivElement> cannot be assigned to a section (RefObject<HTMLElement> is required). As a result the new components fail to compile. Consider widening the element type to HTMLElement or making the hook generic so it can be used with non‑div root elements.

Useful? React with πŸ‘Β / πŸ‘Ž.

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants