Skip to content

Commit 418279d

Browse files
committed
🐞 fix(types): fix type formatting
1 parent 40e2151 commit 418279d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/config/commit-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (!isShowEmoji) {
5959
CommitType = CommitType.map((commitType) => {
6060
const labelArr = [...commitType.label];
6161
labelArr.shift();
62-
commitType.label = labelArr.join('');
62+
commitType.label = labelArr.join('').trim();
6363
return commitType;
6464
});
6565
}

0 commit comments

Comments
 (0)