diff --git a/MobileApp/src/components/AlertCard.tsx b/MobileApp/src/components/AlertCard.tsx
index b7d6cfd0e8..7fac90e065 100644
--- a/MobileApp/src/components/AlertCard.tsx
+++ b/MobileApp/src/components/AlertCard.tsx
@@ -54,80 +54,82 @@ export default function AlertCard({
style={{ width: 3 }}
/>
- {projectName ? (
-
-
+ {projectName ? (
+
+
+
+ ) : null}
+
+
+
+ {alert.alertNumberWithPrefix || `#${alert.alertNumber}`}
+
+
+
+ {timeString}
+
- ) : null}
-
-
-
- {alert.alertNumberWithPrefix || `#${alert.alertNumber}`}
-
-
- {timeString}
-
+ {alert.title}
+
-
- {alert.title}
-
-
-
- {alert.currentAlertState ? (
-
+
+ {alert.currentAlertState ? (
-
- {alert.currentAlertState.name}
-
-
- ) : null}
-
- {alert.alertSeverity ? (
-
-
- {alert.alertSeverity.name}
+
+
+ {alert.currentAlertState.name}
+
+
+ ) : null}
+
+ {alert.alertSeverity ? (
+
+
+ {alert.alertSeverity.name}
+
+
+ ) : null}
+
+
+ {alert.monitor ? (
+
+
+
+ {alert.monitor.name}
) : null}
-
- {alert.monitor ? (
-
-
-
- {alert.monitor.name}
-
-
- ) : null}
-
diff --git a/MobileApp/src/components/EmptyState.tsx b/MobileApp/src/components/EmptyState.tsx
index 231f98bcf8..4243b87b82 100644
--- a/MobileApp/src/components/EmptyState.tsx
+++ b/MobileApp/src/components/EmptyState.tsx
@@ -34,9 +34,7 @@ export default function EmptyState({
return (
{/* Outer gradient glow ring */}
-
+
- {projectName ? (
-
-
-
- ) : null}
-
-
-
- {episode.episodeNumberWithPrefix || `#${episode.episodeNumber}`}
-
-
- {timeString}
-
-
-
- {episode.title}
-
-
-
- {state ? (
-
-
-
- {state.name}
-
+ {projectName ? (
+
+
) : null}
-
- {severity ? (
+
-
- {severity.name}
-
-
- ) : null}
-
- {childCount > 0 ? (
-
-
- {childCount} {type === "incident" ? "incident" : "alert"}
- {childCount !== 1 ? "s" : ""}
+
+ {episode.episodeNumberWithPrefix ||
+ `#${episode.episodeNumber}`}
- ) : null}
+
+ {timeString}
+
+
+
+
+ {episode.title}
+
+
+
+ {state ? (
+
+
+
+ {state.name}
+
+
+ ) : null}
+
+ {severity ? (
+
+
+ {severity.name}
+
+
+ ) : null}
+
+ {childCount > 0 ? (
+
+
+ {childCount} {type === "incident" ? "incident" : "alert"}
+ {childCount !== 1 ? "s" : ""}
+
+
+ ) : null}
+
-
);
diff --git a/MobileApp/src/components/IncidentCard.tsx b/MobileApp/src/components/IncidentCard.tsx
index d5d63025c3..1fe3dfa508 100644
--- a/MobileApp/src/components/IncidentCard.tsx
+++ b/MobileApp/src/components/IncidentCard.tsx
@@ -57,85 +57,87 @@ export default function IncidentCard({
style={{ width: 3 }}
/>
- {projectName ? (
-
-
+ {projectName ? (
+
+
+
+ ) : null}
+
+
+
+ {incident.incidentNumberWithPrefix ||
+ `#${incident.incidentNumber}`}
+
+
+
+ {timeString}
+
- ) : null}
-
-
-
- {incident.incidentNumberWithPrefix ||
- `#${incident.incidentNumber}`}
-
-
- {timeString}
-
+ {incident.title}
+
-
- {incident.title}
-
-
-
- {incident.currentIncidentState ? (
-
+
+ {incident.currentIncidentState ? (
-
- {incident.currentIncidentState.name}
-
-
- ) : null}
-
- {incident.incidentSeverity ? (
-
-
- {incident.incidentSeverity.name}
+
+
+ {incident.currentIncidentState.name}
+
+
+ ) : null}
+
+ {incident.incidentSeverity ? (
+
+
+ {incident.incidentSeverity.name}
+
+
+ ) : null}
+
+
+ {monitorCount > 0 ? (
+
+
+
+ {incident.monitors
+ .map((m: NamedEntity) => {
+ return m.name;
+ })
+ .join(", ")}
) : null}
-
- {monitorCount > 0 ? (
-
-
-
- {incident.monitors
- .map((m: NamedEntity) => {
- return m.name;
- })
- .join(", ")}
-
-
- ) : null}
-
diff --git a/MobileApp/src/components/Logo.tsx b/MobileApp/src/components/Logo.tsx
index 838e24e5b2..46083c815f 100644
--- a/MobileApp/src/components/Logo.tsx
+++ b/MobileApp/src/components/Logo.tsx
@@ -7,14 +7,12 @@ interface LogoProps {
style?: ViewStyle;
}
-export default function Logo({ size = 32, style }: LogoProps): React.JSX.Element {
+export default function Logo({
+ size = 32,
+ style,
+}: LogoProps): React.JSX.Element {
return (
-