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
Here is the sample code that produces the problem:
importtype{Message}from'ai'const[messages,setMessages]=useImmer<Message[]>([])setMessages((messages)=>{messages.push(message)// TS2589: Type instantiation is excessively deep and possibly infinite.})