Skip to content

Commit a418f88

Browse files
committed
fix(app) fixup event handler
1 parent 10796a6 commit a418f88

File tree

1 file changed

+1
-2
lines changed
  • app/features/app/components

1 file changed

+1
-2
lines changed

app/features/app/components/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,11 @@ class App extends Component {
6363
/**
6464
* Handler when main process contact us.
6565
*
66-
* @param {Object} event - Message event.
6766
* @param {string} inputURL - String with room name.
6867
*
6968
* @returns {void}
7069
*/
71-
_listenOnProtocolMessages(event, inputURL) {
70+
_listenOnProtocolMessages(inputURL) {
7271
// Remove trailing slash if one exists.
7372
if (inputURL.slice(-1) === '/') {
7473
inputURL = inputURL.slice(0, -1); // eslint-disable-line no-param-reassign

0 commit comments

Comments
 (0)