diff --git a/packages/codius-astro/src/pages/apps/[id].astro b/packages/codius-astro/src/pages/apps/[id].astro
index 8e691b8..802fdf4 100644
--- a/packages/codius-astro/src/pages/apps/[id].astro
+++ b/packages/codius-astro/src/pages/apps/[id].astro
@@ -49,6 +49,39 @@ if (app.status !== "deployed" && !userIsDeployer) {
>
+ {
+ userIsDeployer && (
+
+
+
+ {app.deletedAt ? "deleted" : app.status}
+
+
+ {app.githubWorkflowRunId && app.githubWorkflowJobId && (
+
+ )}
+
+ )
+ }
)
}
- {
- userIsDeployer && (
-
-
- {app.deletedAt ? "deleted" : app.status}
-
-
- )
- }
+ {
+ app.deletedAt === null && userIsDeployer && (
+
+
+
+ )
+ }
-
-
-
-
-
-
- {
- app.githubWorkflowRunId &&
- app.githubWorkflowJobId &&
- userIsDeployer && (
- )
- }
- {
- app.deletedAt === null && userIsDeployer && (
-
-
- )
- }
+
+