Skip to content

Commit

Permalink
chore(css): use await
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Jan 24, 2024
1 parent 1e43221 commit c185617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/css/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function create(): ServicePlugin {
mtime: 0,
size: 0,
},
readDirectory: async (uri) => context.env.fs?.readDirectory(uri) ?? [],
readDirectory: async (uri) => await context.env.fs?.readDirectory(uri) ?? [],
};
const documentContext: css.DocumentContext = {
resolveReference(ref, base) {
Expand Down

0 comments on commit c185617

Please sign in to comment.