Skip to content

Commit 79405ad

Browse files
committed
Run prettier
1 parent 583d6c9 commit 79405ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/git.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ export const gitGenerators: Record<string, Fig.Generator> = {
128128

129129
const lines = output.split("\n");
130130
const firstLine = lines.length > 0 ? lines[0] : undefined;
131-
const hashLength = firstLine && firstLine.length > 0 ? firstLine.indexOf(' ') : 7;
131+
const hashLength =
132+
firstLine && firstLine.length > 0 ? firstLine.indexOf(" ") : 7;
132133
const descriptionStart = hashLength + 1;
133134

134135
return lines.map((line) => {

0 commit comments

Comments
 (0)