Skip to content

Commit

Permalink
fix: show connected only if permission allowed for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed May 7, 2024
1 parent 9585879 commit a467c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function App() {
navigator.clipboard.writeText(url);
}

if (status === "CONNECTED") {
if (status === "CONNECTED" && isAllowed) {
return (
<div className="flex flex-col items-center justify-center w-full h-[100vh]">
<span className="text-3xl mb-5">CONNECTED</span>
Expand Down

0 comments on commit a467c48

Please sign in to comment.