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

tweaks #68

Merged
merged 1 commit into from
Mar 23, 2022
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
2 changes: 1 addition & 1 deletion packages/site/.env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT_PUBLIC_SITE_URL=https:http://localhost:3000
NEXT_PUBLIC_SITE_URL=https://localhost:3000
NEXT_PUBLIC_SOLANA_API_URL=https://api.devnet.solana.com
NEXT_PUBLIC_WUMBO_IDENTITY_SERVICE_URL=https://prod-identity.teamwumbo.com
NEXT_PUBLIC_APP_REDIRECT_URL="https://app.wum.bo"
Expand Down
2 changes: 1 addition & 1 deletion packages/site/.env.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NEXT_PUBLIC_SITE_URL=https:http://wum.bo
NEXT_PUBLIC_SITE_URL=https://wum.bo
NEXT_PUBLIC_SOLANA_API_URL=https://wumbo.genesysgo.net
NEXT_PUBLIC_WUMBO_IDENTITY_SERVICE_URL=https://prod-identity.teamwumbo.com
NEXT_PUBLIC_APP_REDIRECT_URL="https://app.wum.bo"
9 changes: 8 additions & 1 deletion packages/site/pages/profile/[entity].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,14 @@ const ProfileEntityMapper: NextPage = ({
url: `${SITE_URL}/profile/${entityRaw}`,
title: name,
description: description,
images: [{ url: image }],
images: [
{
url: image,
width: 800,
height: 600,
alt: `${name} Wumbo Profile Alt`,
},
],
}}
twitter={{
cardType: "summary_large_image",
Expand Down