From cc1fbf1ee6e97d43c06987ef074a8887f8a6d5a9 Mon Sep 17 00:00:00 2001 From: Glen Date: Mon, 1 Nov 2021 22:25:33 -0700 Subject: [PATCH] Update app.js --- server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.js b/server/app.js index 2a5b2e43..3d3ad224 100644 --- a/server/app.js +++ b/server/app.js @@ -29,7 +29,7 @@ app.use(cookieParser()); app.use(morgan("tiny")); app.use("/wr", (req, res, next) => { - res.send(`Winner's Record!!2`); + res.send(`Winner's Record!!3`); }); app.use("/auth", authRouter);