Skip to content

Commit

Permalink
remove travis.ci
Browse files Browse the repository at this point in the history
  • Loading branch information
theamazingfedex committed Oct 6, 2022
1 parent a14f36d commit 31dbce8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"devWebsocketServer": "nodemon ./startDevWebsocketServer.js",
"fileserver": "nodemon ./fs-server/runserver.js",
"rstart": "react-scripts start",
"test": "react-scripts test",
"test": "CI=false npm run prod-release",
"rtest": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
Expand Down
3 changes: 2 additions & 1 deletion src/SongManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ export default function SongManager({ mods, setlist, setLastSavedSetlist, curGam
(isInstalled) => {
const searchResult = songSearcher.search(searchTerm, availableSongs) || [];
// console.log('??? search result: ', searchResult, availableSongs);
let songsToMap = isInstalled ? installedSongs : !!searchTerm && searchTerm.length > 0 ? searchResult : availableSongs;
let songsToMap = isInstalled ? installedSongs :
!!searchTerm && searchTerm.length > 0 ? searchResult : availableSongs;

return songsToMap.map(item => (
<SongCard key={item.LevelName + '-' + item.MainMusic.Event + '-' + item.randomID} songInfo={item} setSongs={setSongs} warningToast={warningToast}/>
Expand Down

0 comments on commit 31dbce8

Please sign in to comment.