Skip to content

Commit

Permalink
Code cleaning
Browse files Browse the repository at this point in the history
yarn prettier
  • Loading branch information
theswerd committed Jan 18, 2020
1 parent 17197dc commit ccd6b34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/components/alert/TransitionAlerts.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function ActionAlerts() {
setOpen(!open);
}}
>
{open?"Close":"Re-open"}
{open ? 'Close' : 'Re-open'}
</Button>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/alert/TransitionAlerts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function ActionAlerts() {
setOpen(!open);
}}
>
{open?"Close":"Re-open"}
{open ? 'Close' : 'Re-open'}
</Button>
</div>
);
Expand Down

0 comments on commit ccd6b34

Please sign in to comment.