Replace useless ternarys with logical ANDs

This commit is contained in:
Isaac Wise
2024-07-22 22:34:36 -05:00
parent 2264abd384
commit e79b98d3b0
25 changed files with 195 additions and 212 deletions
+6 -7
View File
@@ -23,22 +23,21 @@ export default function CenteredForm({
data-testid={dataTestId}
>
<div className="m-auto flex flex-col gap-2 w-full">
{settings.theme ? (
{settings.theme && (
<Image
src={`/linkwarden_${
settings.theme === "dark" ? "dark" : "light"
}.png`}
src={`/linkwarden_${settings.theme === "dark" ? "dark" : "light"
}.png`}
width={640}
height={136}
alt="Linkwarden"
className="h-12 w-fit mx-auto"
/>
) : undefined}
{text ? (
)}
{text && (
<p className="text-lg max-w-[30rem] min-w-80 w-full mx-auto font-semibold px-2 text-center">
{text}
</p>
) : undefined}
)}
{children}
<p className="text-center text-xs text-neutral mb-5">
<Trans
+2 -2
View File
@@ -34,9 +34,9 @@ export default function MainLayout({ children }: Props) {
return (
<div className="flex" data-testid="dashboard-wrapper">
{showAnnouncement ? (
{showAnnouncement && (
<Announcement toggleAnnouncementBar={toggleAnnouncementBar} />
) : undefined}
)}
<div className="hidden lg:block">
<Sidebar className={`fixed top-0`} />
</div>