Skip to content

Commit

Permalink
Fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
francisfeng committed Jul 27, 2024
1 parent 7df79c9 commit 1427b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/anybox/src/components/LinkItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ interface Props {

function openURL(url: string, preferredBrowser: string) {
if (preferredBrowser) {
open(url, preferredBrowser)
open(url, preferredBrowser);
} else {
open(url)
open(url);
}
}

Expand Down

0 comments on commit 1427b51

Please sign in to comment.