You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2024. It is now read-only.
This issue is part of a frontend code review, see #1083.
Most components in the front ende codebase don’t do one thing, but several at once. This is not a good technique to follow. Because of this any future changes or improvements are extremely hard and a chance to make a mistake is much higher.
For example, the CommitsTable component is a very large one. The component can be very hard to follow and its formating style can make the component unreadable.
The component can be split into smaller ones to improve its readability and clarity. The component even uses CommitsTableNote component, which is much easier to follow and does just a one thing.