From 00ff654134d4dfb649ff4e3d0652a12541e3f5d3 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Fri, 1 Nov 2024 23:50:20 +0000 Subject: [PATCH] Unindent --- src/view/com/lightbox/Lightbox.tsx | 33 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index 9f4abf28f4..df839e3e1a 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -27,24 +27,23 @@ export function Lightbox() { if (!activeLightbox) { return null - } else { - const opts = activeLightbox - return ( - ( - - )} - /> - ) } + + return ( + ( + + )} + /> + ) } function LightboxFooter({altText, uri}: {altText?: string; uri: string}) {