Skip to content

Commit 4c9962f

Browse files
Tugastralbodies
authored andcommitted
Fix import of lib/oauth-token which doesn't have a default export
1 parent 0109711 commit 4c9962f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/lib/desktop/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import userFactory from 'lib/user';
1717
const user = userFactory();
1818
import { ipcRenderer as ipc } from 'electron'; // From Electron
1919
import store from 'store';
20-
import oAuthToken from 'lib/oauth-token';
20+
import * as oAuthToken from 'lib/oauth-token';
2121
import userUtilities from 'lib/user/utils';
2222
import location from 'lib/route/page-notifier';
2323
import { getStatsPathForTab } from 'lib/route/path';

0 commit comments

Comments
 (0)