Skip to content

Commit db49fdb

Browse files
committed
Adjust to review
1 parent 468b6e8 commit db49fdb

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/pages/NewChatPage.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,8 @@ function NewChatPage({ref}: NewChatPageProps) {
277277
undefined,
278278
reportAttributesDerived,
279279
);
280+
// Just a temporary fix to satisfy the type checker
281+
// Will be fixed when migrating to use new SelectionListWithSections
280282
sections.push({...formatResults.section, title: undefined, shouldShow: true});
281283

282284
if (!firstKeyForList) {

src/pages/iou/request/MoneyRequestAccountantSelector.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ function MoneyRequestAccountantSelector({onFinish, onAccountantSelected, iouType
164164
undefined,
165165
reportAttributesDerived,
166166
);
167+
// Just a temporary fix to satisfy the type checker
168+
// Will be fixed when migrating to use new SelectionListWithSections
167169
newSections.push({...formatResults.section, title: undefined, shouldShow: true});
168170

169171
newSections.push({

src/pages/iou/request/MoneyRequestParticipantsSelector.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,8 @@ function MoneyRequestParticipantsSelector({
297297
undefined,
298298
reportAttributesDerived,
299299
);
300-
300+
// Just a temporary fix to satisfy the type checker
301+
// Will be fixed when migrating to use new SelectionListWithSections
301302
newSections.push({...formatResults.section, title: undefined, shouldShow: true});
302303

303304
newSections.push({

0 commit comments

Comments
 (0)