Skip to content

Commit

Permalink
fix: use relative imports for non src
Browse files Browse the repository at this point in the history
  • Loading branch information
18alantom committed Aug 31, 2022
1 parent d1194ae commit af6f953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/registerAutoUpdaterListeners.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { emitMainProcessError } from 'backend/helpers';
import { app, dialog } from 'electron';
import { autoUpdater, UpdateInfo } from 'electron-updater';
import { emitMainProcessError } from '../backend/helpers';
import { Main } from '../main';
import { isNetworkError } from './helpers';

Expand Down
2 changes: 1 addition & 1 deletion main/registerIpcMainActionListeners.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { emitMainProcessError } from 'backend/helpers';
import { app, dialog, ipcMain } from 'electron';
import { autoUpdater } from 'electron-updater';
import fs from 'fs/promises';
import path from 'path';
import databaseManager from '../backend/database/manager';
import { emitMainProcessError } from '../backend/helpers';
import { Main } from '../main';
import { DatabaseMethod } from '../utils/db/types';
import { IPC_ACTIONS } from '../utils/messages';
Expand Down

0 comments on commit af6f953

Please sign in to comment.