Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint issues
  • Loading branch information
fluiddot committed Jun 6, 2024
commit d93db76e844bfcf2c088be1c3b599128bd3ff101
2 changes: 1 addition & 1 deletion src/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
import { __ } from '@wordpress/i18n';
import { openAboutWindow } from './about-menu/open-about-menu';
import { BUG_REPORT_URL, FEATURE_REQUEST_URL, STUDIO_DOCS_URL } from './constants';
import { promptWindowsSpeedUpSites } from './lib/windows-helpers';
import { withMainWindow } from './main-window';
import { isUpdateReadyToInstall, manualCheckForUpdates } from './updates';
import { promptWindowsSpeedUpSites } from './lib/windows-helpers';

export function setupMenu( mainWindow: BrowserWindow | null ) {
if ( ! mainWindow && process.platform !== 'darwin' ) {
Expand Down
2 changes: 1 addition & 1 deletion src/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import '@sentry/electron/preload';
import { contextBridge, ipcRenderer } from 'electron';
import type { LogLevel } from './logging';
import { promptWindowsSpeedUpSites } from './lib/windows-helpers';
import type { LogLevel } from './logging';

const api: IpcApi = {
archiveSite: ( id: string ) => ipcRenderer.invoke( 'archiveSite', id ),
Expand Down