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

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