File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
AdminBoardDetail/BoardTechnicalUserSetup Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ export default function BoardTechnicalUserSetup({
5757 { t ( 'content.adminboardDetail.technicalUserSetup.message' ) }
5858 </ Typography >
5959 { item . technicalUserProfile &&
60- getTechnicalUserData ( Object . values ( item ?. technicalUserProfile ) [ 0 ] ) }
60+ getTechnicalUserData (
61+ Object . values ( item ?. technicalUserProfile ) . flat ( ) as string [ ]
62+ ) }
6163 </ >
6264 )
6365}
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ export default function ServiceAdminBoardDetail() {
254254
255255 { serviceData . technicalUserProfile &&
256256 getTechUserData (
257- Object . values ( serviceData ? .technicalUserProfile ) [ 0 ]
257+ Object . values ( serviceData . technicalUserProfile ) . flat ( ) as string [ ]
258258 ) }
259259
260260 < div className = "divider-height" />
You can’t perform that action at this time.
0 commit comments