-
Notifications
You must be signed in to change notification settings - Fork 875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: use ipcMainEvents constant #2250
Conversation
ipcMain.on('config.get', () => { | ||
window.webContents.send('config.changed', { | ||
platform: os.platform(), | ||
config: store.store | ||
}) | ||
}) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we really want to remove this? Was it unused?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is unused and its functionality was removed in #1425 (2 years ago). I seem to have forgotten to remove this one. It was used back when the IPFS Desktop settings were presented in the Web UI. Nowadays, they're under the Preferences submenu.
@SgtPooki I need your review again 😄 |
Closes #2115