Skip to content

Commit

Permalink
fix: replace placeImg with static image on Asset examples (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
massao authored Feb 20, 2023
1 parent c4195c9 commit 61a1f99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Asset } from '@contentful/f36-components';
export default function ArchivedAssetExample() {
return (
<Asset
src="https://placeimg.com/200/300/animals"
src="https://images.ctfassets.net/iq4lnigp6fgt/2EEEk92Kiz6KxREsjBLPAN/810d5a21650d91abad12e95da4cd3beb/2021-06_Everyone_is_Welcome_here_1_.png?fit=fill&f=top_left&w=200&h=300"
status="archived"
title="An archived image asset"
type="image"
Expand Down
2 changes: 1 addition & 1 deletion packages/components/asset/examples/AssetExample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Asset } from '@contentful/f36-components';
export default function AssetExample() {
return (
<Asset
src="https://placeimg.com/200/300/animals"
src="https://images.ctfassets.net/iq4lnigp6fgt/2EEEk92Kiz6KxREsjBLPAN/810d5a21650d91abad12e95da4cd3beb/2021-06_Everyone_is_Welcome_here_1_.png?fit=fill&f=top_left&w=200&h=300"
title="A PDF asset"
type="pdf"
/>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/asset/examples/ImageAssetExample.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Asset } from '@contentful/f36-components';
export default function ImageAssetExample() {
return (
<Asset
src="https://placeimg.com/200/300/animals"
src="https://images.ctfassets.net/iq4lnigp6fgt/2EEEk92Kiz6KxREsjBLPAN/810d5a21650d91abad12e95da4cd3beb/2021-06_Everyone_is_Welcome_here_1_.png?fit=fill&f=top_left&w=200&h=300"
title="An image asset"
type="image"
/>
Expand Down

1 comment on commit 61a1f99

@vercel
Copy link

@vercel vercel bot commented on 61a1f99 Feb 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.