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
With version 0.6.4 and onwards I am getting a duplicate import error in the javascript code for custom react components.
In version 0.6.3.post1 it only defines it as a const and does not "import" it as well.
To Reproduce
I added a custom react component like this:
`import reflex as rx
class E3DBar(rx.NoSSRComponent):
library = "/public/echarts3DBar"
tag = "ECharts3DBarReact"
is_default = True
plot_options: rx.Var[str] = ""
plot_type : rx.Var[str] = ""
e3DBar_comp = E3DBar.create`
The error apears when the page loads on which the component is used.
The text was updated successfully, but these errors were encountered:
With version 0.6.4 and onwards I am getting a duplicate import error in the javascript code for custom react components.
In version 0.6.3.post1 it only defines it as a const and does not "import" it as well.
To Reproduce
I added a custom react component like this:
`import reflex as rx
class E3DBar(rx.NoSSRComponent):
library = "/public/echarts3DBar"
tag = "ECharts3DBarReact"
is_default = True
plot_options: rx.Var[str] = ""
plot_type : rx.Var[str] = ""
e3DBar_comp = E3DBar.create`
The error apears when the page loads on which the component is used.
The text was updated successfully, but these errors were encountered: