sp.wack
sp.wack
After reviewing the documentation provided by Radix, I am prepared to begin manually implementing the API for the table component. The main task will involve passing data props to the...
@rbren Probably a good idea, I wasn't sure where to stop for an initial review. I'll share my objective to open it for suggestion/criticism: 1. Cover hooks, utils, helpers, and...
Here are some useful libraries that may be relevant to the implementation: - https://github.com/remarkjs/react-markdown for rendering markdown - https://github.com/react-syntax-highlighter/react-syntax-highlighter for rendering code blocks (if any)
@martialanouman > The only (temporary) solution I found was to separate vitest.config.ts and vite.config.ts, then everything works as expected. But that is not a good solution as according to the...
Your PR includes `node_modules`, which should normally be ignored by Git in `.gitignore`. This explains why 470 files have been modified 😅
Maybe we can stream it to another terminal instance? I've already seen remnants of a custom addon that uses the existing WS class, so it may be worth exploring this...
Also, it seems that this branch does not contain the most recent updates made to the `SettingsModal.test.tsx` file (mock path change and eslint `import/order`, compare with `main`).
There is some strange behavior regarding the way settings are stored. First off, some issues I am facing with the API key: - If I export key from terminal, it...
Seems to work nicely!
For the technical implementation, it may be worth exploring the [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API#browser_compatibility), [FileReader](https://developer.mozilla.org/en-US/docs/Web/API/FileReader), and [drag event listeners](https://www.w3schools.com/jsref/event_ondrag.asp) as a starting point. It may be as straightforward as extending the backend...