From 20daae57ba4290019df9679270f6336901382bba Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Mon, 17 Jan 2022 13:33:15 -0400 Subject: [PATCH] Remove unneeded argument --- src/routes.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/routes.js b/src/routes.js index 5c67f67a..675325cb 100644 --- a/src/routes.js +++ b/src/routes.js @@ -2021,12 +2021,10 @@ module.exports = async ( app.post(`/api/gun/wall/`, async (req, res) => { try { const { tags, title, contentItems, enableTipsOverlay } = req.body - const SEA = require('../services/gunDB/Mediator').mySEA const postRes = await GunActions.createPostNew( tags, title, - contentItems, - SEA + contentItems ) if (enableTipsOverlay) { const [postID] = postRes