From 212772c8d80c1ffc0b4fc37156b127ea1357a336 Mon Sep 17 00:00:00 2001 From: Yann Bizeul Date: Mon, 4 Sep 2023 09:08:09 +0200 Subject: [PATCH] removed extra debug --- web/ui/src/YBFeed/YBFeedComponent.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/ui/src/YBFeed/YBFeedComponent.tsx b/web/ui/src/YBFeed/YBFeedComponent.tsx index 9a57f70..f8bb956 100644 --- a/web/ui/src/YBFeed/YBFeedComponent.tsx +++ b/web/ui/src/YBFeed/YBFeedComponent.tsx @@ -119,15 +119,12 @@ export function FeedComponent() { // Authenticate feed if a secret is found in URL const secret = searchParams.get("secret") if (secret) { - console.log("test") connection.AuthenticateFeed(feedParam,secret) .then(() => { - console.log("then") setGoTo("/" + feedParam) update() }) .catch((e) => { - console.log(e.message) message.error(e.message) setAuthenticated(false) })