jt6677

Results 19 comments of jt6677

I would love to have this. Currently, I want to prevent edges from being deletable. The only way I could find is to set edge property to be deletable:false. Additionally,...

Would you think onBeforeDelete would be a good place to handle any orphan edge deletion?

this project is pretty much abandoned. All issues are not replied and fixed.

That would have issue too. Previously, the gtp response would have a nice format but any editing of the response would cause the text to lose all the line break....

I will try to tackle this problem on Thursday. My hacky way to preserve line breaks and format previously was to put text in blackquote onFinish ``` onFinish: (_prompt, completion)...

@steven-tey I came close with a solution. ``` //temporarily escape markdown syntax as stream coming in useEffect(() => { const diff = completion.slice(prev.current.length); prev.current = completion; // Escape markdown syntax...

> yeah, tiptap markdown does not play nice with streamed response. You either need to escape all the markdown syntax while streaming then set it again or just no using...

shouldResize={(e, params) => params.direction[1] === 0} does not work on diagonal.

As React libs like shadcn ui becoming more popular, component composition will be the default for many devs. I lost embarrassing amount of time on icons auto import.

// useCountdown.js useEffect(() => { setTime(time); }, [time]); If breaks.time === pomodoro.time, this count down won't be reset. Just pass mode as a prop and use that instead.