Skip to content

Commit f729d57

Browse files
committed
remove unnecessary async keyword
1 parent ce761ba commit f729d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async function createProjectService(
178178
tryRebuild()
179179
}
180180
})
181-
.on('change', async (file) => {
181+
.on('change', (file) => {
182182
if (!state.enabled || minimatch(file, '**/package.json')) {
183183
tryInit()
184184
} else {

0 commit comments

Comments
 (0)