Skip to content

Commit

Permalink
Fix list rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nulinspiratie committed Sep 4, 2024
1 parent 4857b63 commit df984ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const StateUpdateComponent: React.FC<StateUpdateComponentProps> = (props) => {
<div className={styles.stateUpdateValueText}>
{stateUpdateObject && (
<div className={styles.stateUpdateValueTextWrapper}>
{stateUpdateObject.old}&nbsp;&nbsp;
{renderSuggestedValue(stateUpdateObject.old ?? "None")}&nbsp;&nbsp;
<RightArrowIcon />
&nbsp;&nbsp;{renderSuggestedValue(stateUpdateObject.val ?? stateUpdateObject.new ?? "")}
<div
Expand Down

0 comments on commit df984ec

Please sign in to comment.