Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(nft-quest): disable 1password form saver #187

Merged
merged 3 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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