-
Completion for these used to work fine, now I'm just not getting any completion when I try to get any property: const MyComponent = () => {
return (
<div styl... />
)
} However completion works fine once I'm "inside" a property: const MyComponent = () => {
return (
<div style={{ ... }} />
)
} |
Beta Was this translation helpful? Give feedback.
Answered by
rchl
Nov 16, 2023
Replies: 1 comment 5 replies
-
Please provide a reproduction repo that worked before and doesn't work anymore. Also LSP logs from your editor. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Didn't recognize it at first but this is an old "issue" - #679 (comment)
Basically your client doesn't advertise support for snippet completions and those are snippet completions in typescript.
Your client most likely supports those and you just need to enable them.