Skip to content

Commit

Permalink
fixed type error in aicommits
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutlope committed Jan 26, 2024
1 parent f63dc33 commit 723c171
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
- name: Type check
run: pnpm type-check

- name: Lint
run: pnpm lint

- name: Build
run: pnpm build

Expand Down
2 changes: 1 addition & 1 deletion src/commands/aicommits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default async (
return;
}

message = selected;
message = selected as string;
}

await execa('git', ['commit', '-m', message, ...rawArgv]);
Expand Down

0 comments on commit 723c171

Please sign in to comment.