Skip to content

Commit

Permalink
style(glowsquid): 🎨 format
Browse files Browse the repository at this point in the history
Signed-off-by: Suyashtnt <[email protected]>
  • Loading branch information
Suya1671 committed Jun 21, 2024
1 parent 8566d4a commit 6dec1ef
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/glowsquid-frontend/src/routes/accountDropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
import DownArrow from '~icons/material-symbols/keyboard-arrow-down'
import Settings from '~icons/material-symbols/settings-outline'
import Plus from '~icons/material-symbols/add'
import { invoke } from '@tauri-apps/api/core';
import { invoke } from '@tauri-apps/api/core'
const addAccount = (e: Event) => {
console.log('Add account')
invoke("add_account")
.then((response) => {
console.log(`Success`, response)
})
.catch((error) => {
console.error(`Error`, error)
})
invoke('add_account')
.then((response) => {
console.log(`Success`, response)
})
.catch((error) => {
console.error(`Error`, error)
})
}
const {
Expand Down

0 comments on commit 6dec1ef

Please sign in to comment.