From 1b6fa875beb980c1229a05877b7cecf8339e8d1c Mon Sep 17 00:00:00 2001 From: el634dev <84924260+el634dev@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:09:46 -0400 Subject: [PATCH] Update app.js --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +});