Skip to content

Commit 9bb5ed6

Browse files
committed
lint
1 parent 70f03ee commit 9bb5ed6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/examples/client/simpleOAuthClient.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,7 @@ class InteractiveOAuthClient {
108108
private async openBrowser(url: string): Promise<void> {
109109
console.log(`🌐 Opening browser for authorization: ${url}`);
110110

111-
// Use platform-specific commands to open browser
112-
const platform = process.platform;
113-
let command: string;
114-
115-
command = `open "${url}"`;
111+
const command = `open "${url}"`;
116112

117113
exec(command, (error) => {
118114
if (error) {

0 commit comments

Comments
 (0)