diff --git a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx
index 00893b61..aa7b78ee 100644
--- a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx
+++ b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx
@@ -826,9 +826,7 @@ export default function ReverseProxyTargets(props: {
-
- {t("priorityDescription")}
-
+ {t("priorityDescription")}
@@ -1022,6 +1020,31 @@ export default function ReverseProxyTargets(props: {
return (
+ {selectedSite &&
+ selectedSite.type === "newt" &&
+ (() => {
+ const dockerState = getDockerStateForSite(
+ selectedSite.siteId
+ );
+ return (
+
+ refreshContainersForSite(
+ selectedSite.siteId
+ )
+ }
+ />
+ );
+ })()}
+
- {selectedSite &&
- selectedSite.type === "newt" &&
- (() => {
- const dockerState = getDockerStateForSite(
- selectedSite.siteId
- );
- return (
-
- refreshContainersForSite(
- selectedSite.siteId
- )
- }
- />
- );
- })()}