Skip to content

Commit

Permalink
Fixing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shech2 committed Dec 25, 2023
1 parent 8aa38f0 commit 90ceaa3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ async function supportCMD(shell: Shell) {
// Check the choice and perform the action
if (choice == "Copy log to clipboard") {
// Saving the log to the clipboard
let log = terminal7.dumpLog()
const log = terminal7.dumpLog()
await Clipboard.write({string: (await log).toString()})
shell.t.writeln("Log copied to clipboard.")
shell.t.writeln("Please paste into discord support channel.")
Expand Down
1 change: 0 additions & 1 deletion src/terminal7.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import { randomBytes } from 'ed25519-keygen/utils'

import { Capacitor } from '@capacitor/core'
import { App } from '@capacitor/app'
import { Clipboard } from '@capacitor/clipboard'
import { Network } from '@capacitor/network'
import { Preferences } from '@capacitor/preferences'
import { Device } from '@capacitor/device'
Expand Down

0 comments on commit 90ceaa3

Please sign in to comment.