Skip to content Skip to sidebar Skip to footer

How Can You Overwrite Or Remove The Signature "electron.app.electron" From The Desktop Notification

I'm trying to remove or overwrite my notification signature made by electron. here is what i get: I am trying to whether overwrite the signature electron.app.Electron or remove it

Solution 1:

// If this is running on Windows then set UserModelID for notification

if (isWin()) {
    app.setAppUserModelId("Proper name to be replaced");
}

Post a Comment for "How Can You Overwrite Or Remove The Signature "electron.app.electron" From The Desktop Notification"