Keep description reactive
This shouldn't work? The snapshot should be the reactive one? I don't fucking know
This commit is contained in:
parent
6cb607ed7a
commit
5a12cf2fc1
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ const PartyFooter = (props: Props) => {
|
||||||
{partySnapshot &&
|
{partySnapshot &&
|
||||||
partySnapshot.description &&
|
partySnapshot.description &&
|
||||||
partySnapshot.description.length > 0 && (
|
partySnapshot.description.length > 0 && (
|
||||||
<Editor content={partySnapshot.description} />
|
<Editor content={appState.party.description} />
|
||||||
)}
|
)}
|
||||||
{(!partySnapshot || !partySnapshot.description) && (
|
{(!partySnapshot || !partySnapshot.description) && (
|
||||||
<section className={styles.noDescription}>
|
<section className={styles.noDescription}>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue