diff --git a/src/generateDapp.ts b/src/generateDapp.ts index 8f17c6ce..8c44d500 100644 --- a/src/generateDapp.ts +++ b/src/generateDapp.ts @@ -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" ); } diff --git a/templates/fungible-asset-template/frontend/components/WalletSelector.tsx b/templates/fungible-asset-template/frontend/components/WalletSelector.tsx index 4d683acb..2a46549b 100644 --- a/templates/fungible-asset-template/frontend/components/WalletSelector.tsx +++ b/templates/fungible-asset-template/frontend/components/WalletSelector.tsx @@ -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);