Skip to content

Commit

Permalink
Merge pull request #259 from helxplatform/fix/activity-mon-event-log
Browse files Browse the repository at this point in the history
Remove test bool that hid event logs in activity monitor
  • Loading branch information
frostyfan109 authored Jul 12, 2023
2 parents 34d1823 + c7cf7ba commit edcd53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/side-panel/side-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const ActivityLog = ({ events, setShowEventInfo }) => {
>
<Space direction="vertical" size="middle">
{
otherActivities.length !== 0 && false ? otherActivities.map((event) => (
otherActivities.length !== 0 ? otherActivities.map((event) => (
<ActivityEntry
key={ event.uid }
event={ event }
Expand Down

0 comments on commit edcd53b

Please sign in to comment.