Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
byeoon committed Oct 17, 2024
1 parent 38b94f5 commit 3820b76
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import(".").then((m) => m.default()).catch((e) => {
alert([
"Failed to load Opti!\n",
`Build Number: ${ClientInfoManager.Build}`,
`Vendetta: ${__optiVersion}`,
`Opti: ${__optiVersion}`,
e?.stack || e.toString(),
].join("\n"));
});
3 changes: 0 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ export default async () => {

// Once done, load plugins
unloads.push(await initPlugins());

// Why not load themes as well?
unloads.push(await initThemes());

// We good :D
logger.log("Opti is ready!");
Expand Down
2 changes: 1 addition & 1 deletion src/lib/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { Logger } from "@types";
import { findByProps } from "@metro/filters";

export const logModule = findByProps("setLogFn").default;
const logger: Logger = new logModule("Vendetta");
const logger: Logger = new logModule("Opti");

export default logger;

0 comments on commit 3820b76

Please sign in to comment.