Skip to content

Commit

Permalink
fix(app): Fix blowout location options text (#15936)
Browse files Browse the repository at this point in the history
  • Loading branch information
smb2268 authored Aug 8, 2024
1 parent 1e6576a commit 284d1f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ export const useBlowOutLocationOptions = (
if (transferType !== 'distribute') {
blowOutLocationItems.push({
location: 'dest_well',
description: t('blow_out_source_well'),
description: t('blow_out_destination_well'),
})
}
if (transferType !== 'consolidate') {
blowOutLocationItems.push({
location: 'source_well',
description: t('blow_out_destination_well'),
description: t('blow_out_source_well'),
})
}
trashLocations.forEach(location => {
Expand Down

0 comments on commit 284d1f8

Please sign in to comment.