Skip to content

Commit

Permalink
chore(nft-quest): disable 1password form saver
Browse files Browse the repository at this point in the history
  • Loading branch information
itsacoyote committed Nov 20, 2024
1 parent 9e9c446 commit 714780b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 30 deletions.
58 changes: 28 additions & 30 deletions examples/nft-quest/components/TransferZeek.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,36 +19,34 @@
</span>
<span class="text-sm text-neutral-500 leading-3">The NFT is minted and sent using a Paymaster and a Session key.</span>
</div>
<form @submit.prevent="mintForFriend">
<ZkInput
v-model="walletAddress"
placeholder="Wallet address"
required
/>
<div class="flex flex-col lg:flex-row items-center gap-4">
<ZkLink
v-if="successMint"
:to="transactionURL"
target="_blank"
type="secondary"
class="w-full mt-4 lg:mt-0"
>
Transaction details
<ZkIcon
icon="open_in_new"
class="ml-2"
/>
</ZkLink>
<ZkButton
type="primary"
class="uppercase mt-2 w-full"
submit
:loading="status === 'pending'"
>
Mint and send {{ successMint ? "again" : "" }}
</ZkButton>
</div>
</form>
<ZkInput
v-model="walletAddress"
placeholder="Wallet address"
required
/>
<div class="flex flex-col lg:flex-row items-center gap-4">
<ZkLink
v-if="successMint"
:to="transactionURL"
target="_blank"
type="secondary"
class="w-full mt-4 lg:mt-0"
>
Transaction details
<ZkIcon
icon="open_in_new"
class="ml-2"
/>
</ZkLink>
<ZkButton
type="primary"
class="uppercase mt-2 w-full"
:loading="status === 'pending'"
@click="mintForFriend"
>
Mint and send {{ successMint ? "again" : "" }}
</ZkButton>
</div>
</div>
</template>

Expand Down
1 change: 1 addition & 0 deletions examples/nft-quest/components/zk/input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
:class="twMerge(inputUI, ui.input, stateUI, loadingInputUI)"
:disabled
:required
data-1p-ignore
>
<transition
v-bind="TransitionOpacity"
Expand Down

0 comments on commit 714780b

Please sign in to comment.