Skip to content

Commit 8efdaae

Browse files
committed
fix(list): normal list symbol mismatch
1 parent 0480689 commit 8efdaae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class ListCommand extends Command {
5454

5555
const msgs = CURRENT_ASSETS.map((item) => {
5656
// const symbol = item.disabled ? logSymbols.success : logSymbols.error
57-
const symbol = item.disabled ? '' : '🟩'
57+
const symbol = item.disabled ? '🟩' : ''
5858
return `${symbol} ${item.file}`
5959
})
6060
console.log(msgs.join('\n'))

0 commit comments

Comments
 (0)