Skip to content

Commit

Permalink
⚰️ removed dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaggeroo committed Jul 12, 2024
1 parent 4df6fe4 commit a6199b7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export type AIImageAnalyzerAPI = {

export default class AIImageAnalyzerPlugin extends Plugin {
settings: MyPluginSettings;
statusBarItemEl: HTMLElement;

public api: AIImageAnalyzerAPI = {
analyzeImage: analyzeImage,
Expand Down Expand Up @@ -135,7 +134,7 @@ class AIImageAnalyzerSettingsTab extends PluginSettingTab {

containerEl.empty();

containerEl.createEl('h2', {text: 'AI Image Analyzer - Settings'})
containerEl.createEl('h2', {text: 'AI Image Analyzer - Settings'});

new Setting(containerEl)
.setName('Pull llava')
Expand Down Expand Up @@ -165,7 +164,7 @@ class AIImageAnalyzerSettingsTab extends PluginSettingTab {
debugMode = value;
}));

new Setting(containerEl).setName('Ollama server settings').setHeading()
new Setting(containerEl).setName('Ollama server settings').setHeading();

new Setting(containerEl)
.setName('Ollama host')
Expand Down

0 comments on commit a6199b7

Please sign in to comment.