-
can fn Component -> Element {
rsx! (
div { "some el" }
)
}
// or
fn Component -> Element {
rsx! {
div { "some el" }
}
} Would any of that be responsible for this log by dioxus logger?
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Yes, macros can be called with
No, but you could try bumping dioxus. Dioxus was throwing that warning in a few situations that are fine. That issue was fixed in #2649 |
Beta Was this translation helpful? Give feedback.
-
Then it could be an error. Do you have anything like |
Beta Was this translation helpful? Give feedback.
-
That is a bug. Dioxus isn't seeing through the re-export for the type name properly when triggering the lint Your code is fine and it is safe to ignore the warning |
Beta Was this translation helpful? Give feedback.
That is a bug. Dioxus isn't seeing through the re-export for the type name properly when triggering the lint
Your code is fine and it is safe to ignore the warning