From: Alec Armbruster <35377827+alectrocute@users.noreply.github.com>
Date: Mon, 26 Jun 2023 21:10:39 +0000 (-0400)
Subject: fix vote button alignment
X-Git-Url: http://these/git/%7B%60https:/static/%7BjoinLemmyUrl%7D?a=commitdiff_plain;h=936eb115bcbd43e3cab1ff2d4a83f8d582660008;p=lemmy-ui.git

fix vote button alignment
---

diff --git a/src/shared/components/common/vote-buttons.tsx b/src/shared/components/common/vote-buttons.tsx
index 005db8c..259d216 100644
--- a/src/shared/components/common/vote-buttons.tsx
+++ b/src/shared/components/common/vote-buttons.tsx
@@ -104,7 +104,7 @@ export class VoteButtonsCompact extends Component<
 
   render() {
     return (
-      <div>
+      <>
         <button
           type="button"
           className={`btn-animate btn py-0 px-1 ${
@@ -157,7 +157,7 @@ export class VoteButtonsCompact extends Component<
             )}
           </button>
         )}
-      </div>
+      </>
     );
   }
 }