Merge branch 'bugfix/mnd-formatting' into 'develop'

changed formatting for mdn from . to -

### Summary
Changing MDN separator format from . to -

### JIRA Ticket
https://onejira.verizon.com/browse/ONEAPP-3844

Co-authored-by: Rebecca Antonelli <rebecca.antonelli@verizon.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/946
This commit is contained in:
Pfeil, Scott Robert 2023-04-27 16:39:28 +00:00
commit 14117c84a6

View File

@ -150,8 +150,8 @@
if(mdn.length == LengthContactNumber) {
NSMutableString * newmdn = [NSMutableString stringWithCapacity:14];
[newmdn appendString:mdn];
[newmdn insertString:@"." atIndex:6];
[newmdn insertString:@"." atIndex:3];
[newmdn insertString:@"-" atIndex:6];
[newmdn insertString:@"-" atIndex:3];
return newmdn;
}