You should be able to apply the changes by either grabbing the navigation-menu.tsx I uploaded below or trying to apply the patch file using the git apply command. Though you might need to adjust the paths if you try using the patch file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function inverse(_A) { | |
| var temp, | |
| N = _A.length, | |
| E = []; | |
| for (var i = 0; i < N; i++) | |
| E[i] = []; | |
| for (i = 0; i < N; i++) | |
| for (var j = 0; j < N; j++) { |