Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
fix: More linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Apr 27, 2022
1 parent 1a2ded2 commit fe9c28b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/userscript/source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { UserScript } from "./UserScript";
await new SavegameLoader(kittenGame).load(devSavegame);
}

const userScript = await UserScript.getDefaultInstance();
const userScript = UserScript.getDefaultInstance();

// @ts-expect-error Manipulating global containers is naughty, be we want to expose the script host.
window.kittenScientists = userScript;
Expand All @@ -35,5 +35,5 @@ import { UserScript } from "./UserScript";
cinfo("No legacy settings found. Default settings will be used.");
}

await userScript.run();
userScript.run();
})().catch(console.error);

0 comments on commit fe9c28b

Please sign in to comment.