Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Dec 21, 2024
1 parent c273e65 commit a794821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src-main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ if (!process.mas && !app.requestSingleInstanceLock()) {
}

const path = require('path');
const openExternal = require('./open-external');
const AbstractWindow = require('./windows/abstract');
const EditorWindow = require('./windows/editor');
const {checkForUpdates} = require('./update-checker');
Expand Down
4 changes: 2 additions & 2 deletions src-main/migrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const settings = require('./settings');
const MigrateWindow = require('./windows/migrate');
const {APP_NAME} = require('./brand');
const {translate} = require('./l10n');
const safelyOpenExternal = require('./open-external');
const openExternal = require('./open-external');
const packageJSON = require('../package.json');

// Avoid running migrate logic on fresh installs when we can. Not required, just helps
Expand All @@ -28,7 +28,7 @@ const writeCurrentVersion = async () => {
};

const openUpdatePage = () => {
safelyOpenExternal('https://desktop.turbowarp.org/');
openExternal('https://desktop.turbowarp.org/');
};

/**
Expand Down

0 comments on commit a794821

Please sign in to comment.