Skip to content

Commit 9f3b626

Browse files
committed
lint
1 parent e07cc16 commit 9f3b626

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

frontend/app/src/entities/events/ui/global-branch-event.tsx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ export const BranchEvent = (props: EventNodeInterface) => {
66
const { event, branch } = props;
77

88
return (
9-
<>
10-
<div className="flex items-center justify-between">
11-
<div className="flex items-center gap-2 text-sm text-gray-500">
12-
<Icon icon="mdi:source-branch" className="text-gray-400" />
9+
<div className="flex items-center justify-between">
10+
<div className="flex items-center gap-2 text-sm text-gray-500">
11+
<Icon icon="mdi:source-branch" className="text-gray-400" />
1312

14-
{branch && BRANCH_EVENTS_MAPPING[event] && BRANCH_EVENTS_MAPPING[event](branch)}
15-
</div>
13+
{branch && BRANCH_EVENTS_MAPPING[event] && BRANCH_EVENTS_MAPPING[event](branch)}
1614
</div>
17-
</>
15+
</div>
1816
);
1917
};

0 commit comments

Comments
 (0)