Skip to content

Commit 28eeb9c

Browse files
committed
Lint nit
1 parent 5199171 commit 28eeb9c

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/commands/fix/agent-fix.mts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -386,14 +386,14 @@ export async function agentFix(
386386
// eslint-disable-next-line no-await-in-loop
387387
const unstagedCResult = await gitUnstagedModifiedFiles(cwd)
388388
const moddedFilepaths = unstagedCResult.ok
389-
? unstagedCResult.data.filter(filepath => {
390-
const basename = path.basename(filepath)
391-
return (
392-
basename === 'package.json' ||
393-
basename === pkgEnvDetails.lockName
394-
)
395-
})
396-
: []
389+
? unstagedCResult.data.filter(filepath => {
390+
const basename = path.basename(filepath)
391+
return (
392+
basename === 'package.json' ||
393+
basename === pkgEnvDetails.lockName
394+
)
395+
})
396+
: []
397397
if (!moddedFilepaths.length) {
398398
logger.warn(
399399
'Unexpected condition: Nothing to commit, skipping PR creation.',

0 commit comments

Comments
 (0)