Skip to content

Commit ba3dd5b

Browse files
eslookCharlotte Gieltjes
andauthored
fix: assets werken op productie niet (#1236) (#1244)
Closes #1236 Co-authored-by: Charlotte Gieltjes <[email protected]>
1 parent 1e5f1e8 commit ba3dd5b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/theme-toolkit/src/component-stories-ams.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ export const AMS_COMPONENT_STORIES: ComponentStory[] = [
481481
name: 'Amsterdam Figure',
482482
render: () => (
483483
<Figure>
484-
<Image alt="Utrecht stadskantoor" height={830} src="/images/stadskantoor.jpg" width={1040} />
484+
<Image alt="Utrecht stadskantoor" height={830} src="images/stadskantoor.jpg" width={1040} />
485485
<Figure.Caption>Utrecht stadskantoor</Figure.Caption>
486486
</Figure>
487487
),

packages/theme-toolkit/src/component-stories-utrecht.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3229,7 +3229,7 @@ export const UTRECHT_COMPONENT_STORIES: ComponentStory[] = [
32293229
group: STORY_GROUPS['IMAGE'],
32303230
name: 'Utrecht Image',
32313231
render: () => (
3232-
<Image alt="Utrecht stadskantoor" height={830} photo={true} src="/images/stadskantoor.jpg" width={1040} />
3232+
<Image alt="Utrecht stadskantoor" height={830} photo={true} src="images/stadskantoor.jpg" width={1040} />
32333233
),
32343234
},
32353235
{

packages/voorbeeld-design-tokens/documentation/figure/ams-figure.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const meta = {
1111
},
1212
render: ({ children, ...args }) => (
1313
<Figure>
14-
<Image alt="Utrecht stadskantoor" height={830} src="/images/stadskantoor.jpg" width={1040} />
14+
<Image alt="Utrecht stadskantoor" height={830} src="images/stadskantoor.jpg" width={1040} />
1515
<Figure.Caption {...args}>{children}</Figure.Caption>
1616
</Figure>
1717
),

packages/voorbeeld-design-tokens/documentation/image/utrecht-img.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const meta = {
1010
alt: 'Utrecht stadskantoor',
1111
height: 830,
1212
photo: true,
13-
src: '/images/stadskantoor.jpg',
13+
src: 'images/stadskantoor.jpg',
1414
width: 1040,
1515
},
1616
} satisfies Meta<typeof Image>;

0 commit comments

Comments
 (0)