Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ForsakenHarmony committed Sep 13, 2023
1 parent 555e3fe commit 6fc808f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/next/src/server/lib/router-utils/setup-dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ async function startWatcher(opts: SetupOpts) {
async function processResult(
result: TurbopackResult<WrittenEndpoint>
): Promise<TurbopackResult<WrittenEndpoint>> {
const hasAppPaths = result.serverPaths.some((path) =>
path.startsWith('server/app')
const hasAppPaths = result.serverPaths.some((p) =>
p.startsWith('server/app')
)

if (hasAppPaths) {
Expand Down

0 comments on commit 6fc808f

Please sign in to comment.