Skip to content

Commit

Permalink
change 'is' to 'was' for notifications (#4344)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored Feb 29, 2024
1 parent 300e76e commit a3c298b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const NotificationTile: React.FC<Props> = ({
? "A service failed to deploy"
: ["job", "predeploy"].includes(n.service.config.type)
? "A job run encountered issues"
: "A service is unhealthy";
: "A service was unhealthy";
})
.with({ scope: "APPLICATION" }, () => {
return "The application failed to deploy";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const ServiceNotificationExpandedView: React.FC<Props> = ({
<Text size={16} color={"#FFBF00"}>
{notification.isDeployRelated
? "failed to deploy"
: "is unhealthy"}
: "was unhealthy"}
</Text>
</Container>
{notification.service.config.type === "job" && (
Expand Down

0 comments on commit a3c298b

Please sign in to comment.