Hello, I'm new to Retool and was just testing building a custom component by following this guide Build custom component libraries | Retool Docs
I have everything setup and the component is showing on my retool app. The problem is the contents of the component aren't changing after editing the index.tsx
E.g. the default returns <div>Hello {name}!</div>
if I change this to <div>Hello there {name}!</div>
the there
doesn't show.
But everything else is updating e.g. if I add a new prop to the component it instantly shows in retool so there doesn't seem to be an issue as such with the connection from my local machine to retool itself.
I can see in the dist
folder the components.js is updated with my change and when looking at the devtools on retool I can see components.js is retrieved each time I save a change but its just the old content still
If I do a deployment of the custom component and then change Retool to use it e.g. v1 it picks up all my changes.
So it seems purely the dev version just isn't auto using the latest components.js from my local machine.
Any ideas what is going on? FYI this is a self hosted version of retool i don't know if that would make a difference