From 856b6ceec6762a4a66bea4d3afd572b3a772f2d2 Mon Sep 17 00:00:00 2001
From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com>
Date: Fri, 31 Oct 2025 14:53:42 +0000
Subject: [PATCH] [autofix.ci] apply automated fixes
---
apps/dokploy/components/layouts/side.tsx | 36 +++++++++++++-----------
1 file changed, 19 insertions(+), 17 deletions(-)
diff --git a/apps/dokploy/components/layouts/side.tsx b/apps/dokploy/components/layouts/side.tsx
index 0d423b038..9f743ad52 100644
--- a/apps/dokploy/components/layouts/side.tsx
+++ b/apps/dokploy/components/layouts/side.tsx
@@ -644,9 +644,7 @@ function SidebarLogo() {
})
.then(() => {
refetch();
- toast.success(
- "Default organization updated",
- );
+ toast.success("Default organization updated");
})
.catch((error) => {
toast.error(
@@ -655,21 +653,25 @@ function SidebarLogo() {
);
});
}}
- title={org.isDefault ? "Default organization" : "Set as default"}
+ title={
+ org.isDefault
+ ? "Default organization"
+ : "Set as default"
+ }
>
- {org.isDefault ? (
-
- ) : (
-
- )}
+ {org.isDefault ? (
+
+ ) : (
+
+ )}