Skip to content

Commit

Permalink
Remove the console expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] authored Jan 28, 2023
1 parent da8f09d commit 2c395eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SettingsTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class CameraSettingsTab extends PluginSettingTab {
.setPlaceholder('Enter your secret')
.setValue(this.plugin.settings.chosenFolderPath)
.onChange(async (value) => {
console.log('Chosen Folder Path: ' + value);

this.plugin.settings.chosenFolderPath = value;
await this.plugin.saveSettings();
}));
Expand Down

0 comments on commit 2c395eb

Please sign in to comment.