Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh committed Jan 13, 2025
1 parent 0a7a8c5 commit 10b683e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ export default function Settings() {
}
setCharacters(characters);

let models = stored.models;
let modelsLastUpdated = stored.modelsLastUpdated;
let modelsVersion = stored.modelsVersion;
let modelsSource = stored.modelsSource;
const models = stored.models;
const modelsLastUpdated = stored.modelsLastUpdated;
const modelsVersion = stored.modelsVersion;
const modelsSource = stored.modelsSource;
// If the models have not been downloaded, download them
// If the models were downloaded but the version is older than the current version, update them
const currentVersion = chrome.runtime.getManifest().version;
Expand Down

0 comments on commit 10b683e

Please sign in to comment.