Skip to content

Commit

Permalink
change confirmation prompts messages on scenario features bulk
Browse files Browse the repository at this point in the history
  • Loading branch information
anamontiaga committed Jan 8, 2024
1 parent bb07a80 commit c703d4b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export const ScenariosFeaturesTargets = ({ onGoBack }: { onGoBack: () => void })
/>

<ConfirmationPrompt
title={`Are you sure you want to change all the feature targets that are currently selected to ${confirmationTarget?.v}?`}
title={`Are you sure you want to set target to ${confirmationTarget?.v} for all the features currently selected?`}
description="The action cannot be reverted."
open={!!confirmationTarget}
onAccept={() => {
Expand All @@ -294,7 +294,7 @@ export const ScenariosFeaturesTargets = ({ onGoBack }: { onGoBack: () => void })
/>

<ConfirmationPrompt
title={`Are you sure you want to change all the feature SPFs that are currently selected to ${confirmationFPF?.v}?`}
title={`Are you sure you want to set SPF to ${confirmationFPF?.v} for all the features currently selected?`}
description="The action cannot be reverted."
open={!!confirmationFPF}
onAccept={() => onChangeFPFAll(confirmationFPF)}
Expand Down

0 comments on commit c703d4b

Please sign in to comment.