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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 18 deletions

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,