Skip to content

Commit

Permalink
Fix handling of added workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrypticace committed Jun 18, 2024
1 parent bb72017 commit b39c8e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tailwindcss-language-server/src/tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ export class TW {
}))
.map((folder) => normalizePath(folder.uri))

await Promise.allSettled(added.map((basePath) => this._initFolder(basePath)))
await Promise.allSettled(added.map((basePath) => this._initFolder(URI.file(basePath))))

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

0 comments on commit b39c8e0

Please sign in to comment.