Skip to content

Commit

Permalink
fix: status switch
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger committed Oct 18, 2023
1 parent 0a8c6ae commit 79d1d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Creatives/CreativeStatusSwitch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function CreativeStatusSwitch({ creative }: Props) {
<Dialog open={relatedCampaigns.length > 0}>
<DialogTitle>
Are you sure you want to{" "}
{creative.state === "active" ? "activate" : "pause"}{" "}
{creative.state === "active" ? "pause" : "activate"}{" "}
{`"${input.name}"`}
</DialogTitle>
<DialogContent>
Expand Down

0 comments on commit 79d1d86

Please sign in to comment.