Skip to content

Commit

Permalink
Fix continuity in rerun spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonsf committed Jun 25, 2024
1 parent adce736 commit 72c083f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const MissionRestartButton = ({ mission, hasFailedTasks }: MissionProps)

return (
<Centered>
<Tooltip title={TranslateText('Re-run the mission')} hidden={isOpen}>
<Tooltip title={TranslateText('Rerun the mission')} hidden={isOpen}>
<Button
ref={anchorRef}
variant="ghost_icon"
Expand Down Expand Up @@ -89,7 +89,7 @@ export const MissionRestartButton = ({ mission, hasFailedTasks }: MissionProps)
setIsLocationVerificationOpen(true)
}}
>
{TranslateText('Re-run full mission')}
{TranslateText('Rerun full mission')}
</Menu.Item>
{hasFailedTasks && (
<Menu.Item
Expand All @@ -98,7 +98,7 @@ export const MissionRestartButton = ({ mission, hasFailedTasks }: MissionProps)
setIsLocationVerificationOpen(true)
}}
>
{TranslateText('Re-run failed and cancelled tasks in the mission')}
{TranslateText('Rerun failed and cancelled tasks in the mission')}
</Menu.Item>
)}
</Menu>
Expand Down

0 comments on commit 72c083f

Please sign in to comment.