fix(ui): hide most recent calls line if there are no tags
This commit is contained in:
parent
176f38a38d
commit
d5f3c2fa2f
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ export default class MainSection extends React.PureComponent {
|
|||
</Button>
|
||||
</div>
|
||||
<SessionBar className="my-4" session={error.lastHydratedSession} />
|
||||
{error.customTags ? (
|
||||
{error.customTags.length > 0 ? (
|
||||
<div className="flex items-start flex-col">
|
||||
<div>
|
||||
<span className="font-semibold">More Info</span> <span className="text-disabled-text">(most recent call)</span>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue