Skip to content

Commit f2372c9

Browse files
committed
fix hover error
1 parent dc7502c commit f2372c9

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

packages/vscode-tailwindcss/src/extension.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,6 @@ export async function activate(context: ExtensionContext) {
212212
outputChannel: outputChannel,
213213
revealOutputChannelOn: RevealOutputChannelOn.Never,
214214
middleware: {
215-
async provideHover(document, position, token, next) {
216-
let result = await next(document, position, token)
217-
result.contents = result.contents.map((content) => {
218-
// @ts-ignore
219-
content.isTrusted = true
220-
return content
221-
})
222-
return result
223-
},
224215
async resolveCompletionItem(item, token, next) {
225216
let result = await next(item, token)
226217
let selections = Window.activeTextEditor.selections

0 commit comments

Comments
 (0)