Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed Jan 31, 2024
1 parent 297b148 commit b357d4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function Button({
className={classNames(
styles.deltaButton,
round && styles.round,
type && styles[type],
type && styles[type]
)}
onClick={onClick}
aria-label={props['aria-label']}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/Button/style.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
border-style: solid !important;
padding: 10px 15px;
color: white;

&:disabled {
background-color: rgba(206, 217, 224, 0.5) !important;
border-color: rgba(206, 217, 224, 0.5) !important;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/Dialog/FooterActionButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function FooterActionButton({
return (
<Button
onClick={onClick}
type={ danger ? 'danger' : 'primary' }
type={danger ? 'danger' : 'primary'}
disabled={disabled}
>
{children}
Expand Down

0 comments on commit b357d4b

Please sign in to comment.