From 926cfbee3ed8663a114bc8c5130487da32399122 Mon Sep 17 00:00:00 2001 From: markusoliverannuk <149253918+markusoliverannuk@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:27:04 +0200 Subject: [PATCH] updating count response in routes seemed logical --- web/routes/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/routes/index.js b/web/routes/index.js index 18616cc..f7d65bb 100644 --- a/web/routes/index.js +++ b/web/routes/index.js @@ -12,7 +12,7 @@ router.get('/ice-flakes', function (req, res, next) { .status(201) .json({ resource: 'ice-flakes', - count: 1005, + count: 2005, shape: 'rectangle' }) })