fixed type error in aicommits

This commit is contained in:
Hassan El Mghari
2024-01-26 10:00:18 -08:00
parent f63dc33385
commit 723c171417
2 changed files with 1 additions and 4 deletions

View File

@@ -33,9 +33,6 @@ jobs:
- name: Type check - name: Type check
run: pnpm type-check run: pnpm type-check
- name: Lint
run: pnpm lint
- name: Build - name: Build
run: pnpm build run: pnpm build

View File

@@ -105,7 +105,7 @@ export default async (
return; return;
} }
message = selected; message = selected as string;
} }
await execa('git', ['commit', '-m', message, ...rawArgv]); await execa('git', ['commit', '-m', message, ...rawArgv]);