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 ? (
+
+ ) : (
+
+ )}