Skip to content

Commit

Permalink
fix #891 (#1089)
Browse files Browse the repository at this point in the history
* fix #891

* update copy
  • Loading branch information
efstajas authored Jun 3, 2024
1 parent 2b6d281 commit 01947f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/routes/app/(app)/drip-lists/[listId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@
}.png`}
<HeadMeta
title="{dripList?.name || votingRound?.name} | Drip List"
description={dripList?.description ?? votingRound?.name ?? undefined}
description={dripList?.description ??
votingRound?.description ??
(dripList
? `"${dripList.name}" is a Drip List of open source projects, Ethereum addresses, or Drip Lists. Anyone with an Ethereum wallet can send one-time or continuous donations to it.`
: undefined)}
image="{imageBaseUrl}?target=og"
twitterImage="{imageBaseUrl}?target=twitter"
/>
Expand Down

0 comments on commit 01947f7

Please sign in to comment.