From 578c2bccd098f32716351d4110a9818a48cfac8f Mon Sep 17 00:00:00 2001 From: Elliot Braem Date: Wed, 8 Jan 2025 12:26:45 -0500 Subject: [PATCH] fmt --- src/pages/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index.js b/src/pages/index.js index 31a7447..6baea55 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -16,11 +16,11 @@ export default function Home() { const post = async (text) => { // TODO: generic interface for external plugins const promises = []; - + if (NEAR_SOCIAL_ENABLED) { promises.push(postToNearSocial(text)); } - + if (TWITTER_ENABLED) { promises.push(tweet(text)); }