From d98649f77e345b388b0af87934784eb4287c13dd Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 4 May 2023 15:50:35 +0200 Subject: [PATCH] fix navbar --- src/components/views/Board.jsx | 18 +++++++++--------- src/components/views/Catalog.jsx | 10 +++++----- src/components/views/Thread.jsx | 10 +++++----- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/components/views/Board.jsx b/src/components/views/Board.jsx index 9da5e0dd..241c7612 100644 --- a/src/components/views/Board.jsx +++ b/src/components/views/Board.jsx @@ -355,16 +355,16 @@ const Board = () => { [ Subscriptions ] [ - - {defaultSubplebbits.map((subplebbit, index) => ( - - {index === 0 ? null : "\u00a0"} - handleClickTitle(subplebbit.title, subplebbit.address)} - >{subplebbit.title ? subplebbit.title : subplebbit.address} - {index !== defaultSubplebbits.length - 1 ? " /" : null} - - ))} + {defaultSubplebbits.map((subplebbit, index) => ( + + {index === 0 ? null : "\u00a0"} + handleClickTitle(subplebbit.title, subplebbit.address)} + >{subplebbit.title ? subplebbit.title : subplebbit.address} + {index !== defaultSubplebbits.length - 1 ? " /" : null} + + ))} ] + [