Skip to content

Commit

Permalink
Ensure Ownerships table don't crash on missing creator prop (like in …
Browse files Browse the repository at this point in the history
…pending)
  • Loading branch information
Anahkiasen committed Dec 11, 2024
1 parent 9e507c4 commit 13e1cd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const OwnershipsTable = ({
<Title size={3}>{t('organizers.ownerships.table.actions.title')}</Title>
</Inline>
<List paddingY={3}>
<List.Item>{creator.email}</List.Item>
{creator && <List.Item>{creator.email}</List.Item>}
{requests.map((request) => (
<Inline
key={request.id}
Expand Down

0 comments on commit 13e1cd3

Please sign in to comment.