Skip to content

Commit b39c8e0

Browse files
committed
Fix handling of added workspaces
1 parent bb72017 commit b39c8e0

File tree

1 file changed

+1
-1
lines changed
  • packages/tailwindcss-language-server/src

1 file changed

+1
-1
lines changed

Diff for: packages/tailwindcss-language-server/src/tw.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ export class TW {
607607
}))
608608
.map((folder) => normalizePath(folder.uri))
609609

610-
await Promise.allSettled(added.map((basePath) => this._initFolder(basePath)))
610+
await Promise.allSettled(added.map((basePath) => this._initFolder(URI.file(basePath))))
611611

612612
// TODO: If folders get removed we should cleanup any associated state and resources
613613
}),

0 commit comments

Comments
 (0)