Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Commit

Permalink
chore(vue-ts): fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Mar 25, 2024
1 parent ab6a753 commit c912236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/vue-ts/src/components/Connect.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { ref } from 'vue'
import algosdk from 'algosdk'
import { useWallet, type Wallet } from '@txnlab/use-wallet-vue'
import algosdk from 'algosdk'
import { ref } from 'vue'
const { algodClient, transactionSigner, wallets } = useWallet()
const isSending = ref(false)
Expand Down

0 comments on commit c912236

Please sign in to comment.