diff --git a/app.js b/app.js index 29e8dd0..d381ea9 100644 --- a/app.js +++ b/app.js @@ -38,7 +38,7 @@ app.set('views', './views'); // Show a gif image app.get('/', (req, res) => { // Handle the home page when we haven't queried yet - term = "" + term = "cats" //-------- if (req.query.term) { term = req.query.term @@ -68,4 +68,4 @@ app.get('/greetings/:name', (req, res) => { app.listen(3000, () => { // See message in terminal console.log('Gif Search listening on port localhost:3000!'); -}); \ No newline at end of file +});