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
@@ -48,14 +52,14 @@ export function registerCompletionProvider(context: vscode.ExtensionContext) {
48
52
'extension.showSnippetMessage',
49
53
(snippetName: string,snippet: Snippet)=>{
50
54
letmessage=`"${snippetName}" snippet:`;
51
-
if(snippet.relatedCustomHooks.length>0){
55
+
if(snippet.relatedCustomHooks.length>0){
52
56
message+=` The custom hooks ${snippet.relatedCustomHooks} are available in our library. Just type ${snippet.relatedCustomHooks} to use them, and make sure to include them to avoid any errors.`;
53
57
}
54
-
if(snippet.relatedReactHooks.length>0){
58
+
if(snippet.relatedReactHooks.length>0){
55
59
message+=` You can add ${snippet.relatedReactHooks} from react`;
0 commit comments