We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c5b8a2 commit 5376ee0Copy full SHA for 5376ee0
src/Auth/index.ts
@@ -27,7 +27,6 @@ axios.interceptors.response.use((value) => {
27
28
if (error.request) {
29
setIsReconnecting(true);
30
- console.log('Reconnecting');
31
return timeout(1000).then(() => axios.request(error.config));
32
}
33
return Promise.reject(error);
src/mainCommunication/index.ts
@@ -104,7 +104,6 @@ export function userDidChangeShortcut(shortcut: string) {
104
105
106
export function userDidChangeSearchMode(mode: SearchMode) {
107
- console.log(mode);
108
electron.ipcRenderer.send(IPCMessage.UserDidChangeSearchMode, { mode });
109
110
0 commit comments