From 05df140aa9b6bbcca05a350bcd4abeb14f4b0825 Mon Sep 17 00:00:00 2001 From: Oliver Fay Date: Sat, 22 Feb 2020 18:45:53 -0500 Subject: [PATCH] Update server.js --- Server/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/server.js b/Server/server.js index 3a2a691c..90bdb62a 100644 --- a/Server/server.js +++ b/Server/server.js @@ -10,7 +10,7 @@ app.get('/createNewBlock', function (req, res) { res.sendFile('createNewBlock.html', { root: './client/html' }); }); app.get('/searchBlock', function (req, res) { - res.sendFile('about.html', { root: './client/html' }); + res.sendFile('searchForBlock.html', { root: './client/html' }); }); app.get('/results', function (req, res) { res.sendFile('searchResults.html', { root: './client/html' });