ViewProfile: clone contact groups array

Fixes urbit/landscape#682
This commit is contained in:
Matilde Park 2021-03-31 15:13:58 -04:00
parent e52ad949b6
commit d265a6f5bc

View File

@ -62,7 +62,7 @@ export function ViewProfile(props: any): ReactElement {
<Col gapY='3' mb='3' mt='6' alignItems='flex-start'>
<Text gray>Pinned Groups</Text>
<Col>
{contact?.groups.sort(lengthOrder).map((g) => (
{contact?.groups.slice().sort(lengthOrder).map((g) => (
<GroupLink
api={api}
resource={g}