Skip to content

Commit

Permalink
add new line between steps in next steps, fix FA path for when to sho…
Browse files Browse the repository at this point in the history
…w AptosConnect (#140)
  • Loading branch information
0xmaayan authored Jul 10, 2024
1 parent e331957 commit 13ad49a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/generateDapp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export async function generateDapp(selection: Selections) {
`3. Follow the instructions for the ${
selection.template.name
} template on ${white(selection.template.doc)}`
)
) + "\n"
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function ConnectWalletDialog({ close }: ConnectWalletDialogProps) {

const location = useLocation();

const isPublicMintPage = location.pathname !== "/create-collection" && location.pathname !== "/my-collections";
const isPublicMintPage = location.pathname !== "/create-asset" && location.pathname !== "/my-assets";

const { aptosConnectWallets, availableWallets, installableWallets } = groupAndSortWallets(wallets);

Expand Down

0 comments on commit 13ad49a

Please sign in to comment.