Skip to content

Commit

Permalink
Change label: Is PHI Shared -> PHI shared
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanem committed Dec 13, 2024
1 parent 2770c09 commit 7616b9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/database/models/Application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,11 @@ export const FeatureQuestions = [

// Requests were made to change certain hard coded values. This handles this display logic
export const withReplacement = text =>
text === 'Kids Help Phone Approved'
text === 'Is PHI shared'
? 'PHI shared'
: text === 'Is PHI Shared'
? 'PHI shared'
: text === 'Kids Help Phone Approved'
? 'Youth'
: text === 'Bbot Interaction'
? 'Chatbot Interaction'
Expand Down

0 comments on commit 7616b9d

Please sign in to comment.