I T H

[에러해결] Type 'string | null' is not assignable to type 'string'. 본문

에러 코드 해결

[에러해결] Type 'string | null' is not assignable to type 'string'.

thdev 2024. 2. 11. 13:20

 

 

- 이 에러는 null 유형이 string 유형에 할당할 수 없다는 에러이다.

 

[ 해결방법 ]

 

- 해당 string 타입에 ' | null ' 을 추가해주면 된다.

 

[에러 해결 전 코드]

 

[ 에러 해결 후 코드]

authorizationCode: string | null;