Skip to content

Commit 7156367

Browse files
Copilotalexr00
andcommitted
Fix code style: remove extra space in function parameter declaration
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
1 parent b988aad commit 7156367

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webviews/components/merge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ const CHECK_STATE_ORDER: Record<CheckState, number> = {
579579
[CheckState.Unknown]: 4,
580580
};
581581

582-
const StatusCheckDetails = ( { statuses }: { statuses: PullRequestCheckStatus[] }) => {
582+
const StatusCheckDetails = ({ statuses }: { statuses: PullRequestCheckStatus[] }) => {
583583
// Sort statuses to group by state: failure first, then pending, neutral, and success
584584
const sortedStatuses = [...statuses].sort((a, b) => {
585585
return CHECK_STATE_ORDER[a.state] - CHECK_STATE_ORDER[b.state];

0 commit comments

Comments
 (0)