Skip to content

Commit

Permalink
fix nit
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Mar 21, 2024
1 parent cac5c0b commit 0298bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/page-parachains/src/Overview/Parachain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function Parachain ({ bestNumber, className = '', id, lastBacked, lastInclusion,
<StyledTr className={`${className} ${(lastBacked || lastInclusion || paraInfo.watermark) ? '' : 'isDisabled'}`}>
<Table.Column.Id value={id} />
<td className='badge together'>
{paraInfo.paraInfo?.locked?.unwrapOr(null).isFalse
{paraInfo.paraInfo?.locked?.isSome && paraInfo.paraInfo?.locked?.unwrap().isFalse
? (
<Badge
color='orange'
Expand Down

0 comments on commit 0298bec

Please sign in to comment.