(wip): migrate ttp to mtp -> snake case to pascal case
This commit is contained in:
parent
ee5955fc75
commit
7f75a36d73
23 changed files with 214 additions and 248 deletions
|
|
@ -17,7 +17,7 @@ export default function Preview() {
|
|||
};
|
||||
}
|
||||
|
||||
void Promise.all(currentCallData.user_ids.map((id) => get(id)))
|
||||
void Promise.all(currentCallData.UserIds.map((id) => get(id)))
|
||||
.then((users) => {
|
||||
if (!active) {
|
||||
return;
|
||||
|
|
@ -44,7 +44,7 @@ export default function Preview() {
|
|||
<div className="flex flex-col gap-2">
|
||||
{data.map((user) => {
|
||||
return (
|
||||
<p key={user.user_id} className="text-2xl">
|
||||
<p key={user.UserId} className="text-2xl">
|
||||
User: {user.display}
|
||||
</p>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue