Sync MyStories using the ID not the name

This commit is contained in:
Josh Perez
2022-08-03 20:10:05 -04:00
committed by GitHub
parent 6d1a27be5a
commit 782838c591
5 changed files with 14 additions and 18 deletions
+1 -3
View File
@@ -239,9 +239,7 @@ export const StoriesSettingsModal = ({
return undefined;
}
const isSelected = selectedConversationUuids.has(
UUID.fromString(contact.uuid)
);
const isSelected = selectedConversationUuids.has(UUID.cast(contact.uuid));
return {
type: RowType.ContactCheckbox,