Remove Title Case di Provider

This commit is contained in:
ivan-sim
2024-03-18 10:20:06 +07:00
parent 72ca483f1c
commit c7aa8ad493
2 changed files with 2 additions and 2 deletions

View File

@@ -421,7 +421,7 @@ export default function TableListFinalLog() {
setData( setData(
response.data.data.map((obj: any) => ({ response.data.data.map((obj: any) => ({
...obj, ...obj,
provider:formatTitleCase(obj.provider), provider:obj.provider,
full_name:formatTitleCase(obj.full_name), full_name:formatTitleCase(obj.full_name),
check_status: obj.status, check_status: obj.status,
check_claim: obj.check_claim, check_claim: obj.check_claim,

View File

@@ -384,7 +384,7 @@ export default function TableList() {
setData( setData(
response.data.data.map((obj: any) => ({ response.data.data.map((obj: any) => ({
...obj, ...obj,
provider:formatTitleCase(obj.provider), provider:obj.provider,
full_name:formatTitleCase(obj.full_name), full_name:formatTitleCase(obj.full_name),
status: status:
obj.status === 'requested' ? ( obj.status === 'requested' ? (