diff --git a/client/sagas/mouse-trap-saga.js b/client/sagas/mouse-trap-saga.js index a9b3146ce7..a9a7fb8297 100644 --- a/client/sagas/mouse-trap-saga.js +++ b/client/sagas/mouse-trap-saga.js @@ -20,7 +20,6 @@ const softRedirects = { 'g n n': '/challenges/next-challenge', 'g n a': '/about', 'g n m': '/map', - 'g n w': '/wiki', 'g n s': '/shop', 'g n o': '/settings' }; @@ -33,6 +32,10 @@ export default function mouseTrapSaga(actions$) { 'g n r', () => hardGoTo('https://github.com/freecodecamp/freecodecamp') ), + bindKey$( + 'g n w', + () => hardGoTo('http://forum.freecodecamp.com') + ), bindKey$('g m', toggleMapDrawer), bindKey$('g t n', toggleNightMode), bindKey$('g c', toggleMainChat)