Skip to content

Commit fcd033c

Browse files
fix: syntax error
1 parent 05dea06 commit fcd033c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/configManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class ConfigManager {
6060
`Removed ${repository.length - uniqueArray.length} duplicate repository URL(s) from configuration.`
6161
);
6262
}, (error) => {
63-
+ this.logger.error('Failed to update repositories configuration', error instanceof Error ? error : undefined);
63+
this.logger.error('Failed to update repositories configuration', error instanceof Error ? error : undefined);
6464
vscode.window.showWarningMessage(
6565
`Found ${repository.length - uniqueArray.length} duplicate repository URL(s) but failed to update configuration. Please remove duplicates manually.`
6666
);

0 commit comments

Comments
 (0)