Skip to content

Commit

Permalink
Fix opensea urls
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKiwi committed Jun 30, 2023
1 parent 90c21d2 commit 9f9eb37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/DerivativeImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const DerivativeImage = ({ derivative }: Props) => {
<TopRow>
{derivative.id && (
<Link
href={`https://opensea.io/assets/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${derivative.id}`}
href={`https://opensea.io/assets/ethereum/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${derivative.id}`}
target="_blank"
>{`uwucrew #${derivative.id}`}</Link>
)}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/DerivativePopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const DerivativePopup = ({ derivative, show, close, image }: Props) => {
{derivative.id && (
<Row>
<Header>uwucrew:</Header>
<Link href={`https://opensea.io/assets/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${derivative.id}`} target="_blank">
<Link href={`https://opensea.io/assets/ethereum/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${derivative.id}`} target="_blank">
{`#${derivative.id}`}
</Link>
</Row>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/License.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const License = () => {
<SubHeader>{t('license.subheader-16')}</SubHeader>
<Uwus>
{theCrew.map((uwu: number) => (
<UwuContainer href={`https://opensea.io/assets/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${uwu}`} target="_blank">
<UwuContainer href={`https://opensea.io/assets/ethereum/0xf75140376d246d8b1e5b8a48e3f00772468b3c0c/${uwu}`} target="_blank">
<UwuImage src={`https://firebasestorage.googleapis.com/v0/b/uwucrew-thumbnails/o/${uwu}.png?alt=media`} />
<UwuText>{`uwu: #${uwu}`}</UwuText>
</UwuContainer>
Expand Down

0 comments on commit 9f9eb37

Please sign in to comment.