Skip to content

Commit

Permalink
Nov. 12th Stage QA fixes (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
qiyundai authored Nov 13, 2024
1 parent bac980d commit a2abf52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ecc/blocks/form-handler/data-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ export function hasContentChanged(oldData, newData) {
'status',
'platform',
'platformCode',
'liveUpdate',
];

// Checking keys counts
Expand Down
2 changes: 1 addition & 1 deletion ecc/scripts/esp-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ export async function getEventSpeaker(seriesId, eventId, speakerId) {
return { status: response.status, error: data };
}

return convertToSpeaker({ ...seriesSpeaker, type: data.speakerType });
return { ...seriesSpeaker, type: data.speakerType };
} catch (error) {
window.lana?.log('Failed to get event speaker details. Error:', error);
return { status: 'Network Error', error: error.message };
Expand Down

0 comments on commit a2abf52

Please sign in to comment.