You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
현재 SwitchCase 컴포넌트에서는 discriminated union 타입을 사용할 때 타입 정보가 손실되어 타입 안전성이 보장되지 않는 문제가 있습니다.
typeQuiz=|{type: 'multiple';options: string[]}|{type: 'ox'}// 현재는 타입 에러가 발생합니다<SwitchCasevalue={curQuiz.type}caseBy={{multiple: (<div>{curQuiz.options}// Error: Property 'options' does not exist on type 'Quiz'</div>),ox: <div/>}}/>
Package Scope
Package name: react
Overview
현재 SwitchCase 컴포넌트에서는 discriminated union 타입을 사용할 때 타입 정보가 손실되어 타입 안전성이 보장되지 않는 문제가 있습니다.
현재 해결을 위해 아래와 같은 수동 타입 체크가 필요한 상황입니다:
Additional context