Skip to content

Commit e9f95bf

Browse files
fix code styling issues
1 parent 2f3f0e9 commit e9f95bf

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

web/renderer/components/DiffSelector/ForBranchCommitAndTag.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ export default function ForBranchCommitAndTag({ params }: Props) {
5454
})}
5555
className={css.viewDiffButton}
5656
>
57-
<Button disabled={fromRef === toRef} className={css.button} data-cy="view-diff-button">
57+
<Button
58+
disabled={fromRef === toRef}
59+
className={css.button}
60+
data-cy="view-diff-button"
61+
>
5862
View Diff
5963
</Button>
6064
</Link>

web/renderer/components/pageComponents/DatabasePage/ForBranches/NewBranchPage/NewBranchForm/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@ export default function NewBranchForm(props: Props): JSX.Element {
7777
stackedButton={isMobile}
7878
error={err}
7979
>
80-
<Button type="submit" disabled={!newBranchName || !fromRefName} data-cy="create-branch-button">
80+
<Button
81+
type="submit"
82+
disabled={!newBranchName || !fromRefName}
83+
data-cy="create-branch-button"
84+
>
8185
Create branch
8286
</Button>
8387
</ButtonsWithError>

0 commit comments

Comments
 (0)