Skip to content

Commit 7fad4d3

Browse files
committed
fix: avatar story
1 parent 81267d4 commit 7fad4d3

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

src/components/ui/__stories__/Avatar.stories.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ type Story = StoryObj<typeof meta>
1414

1515
export const Single: Story = {
1616
args: {
17-
name: "dan abrahmov",
18-
src: "https://bit.ly/dan-abramov",
17+
name: "Sam Richards",
18+
src: "https://avatars.githubusercontent.com/u/8097623?v=4",
1919
href: "#",
2020
},
2121
render: (args) => (
@@ -29,8 +29,8 @@ export const Single: Story = {
2929

3030
export const Group: Story = {
3131
args: {
32-
name: "Dan Abrahmov",
33-
src: "https://bit.ly/dan-abramov",
32+
name: "Sam Richards",
33+
src: "https://avatars.githubusercontent.com/u/8097623?v=4",
3434
href: "#",
3535
},
3636
render: (args) => (
@@ -49,10 +49,10 @@ export const Group: Story = {
4949

5050
export const WithUsername: Story = {
5151
args: {
52-
name: "Dan Abrahmov",
53-
src: "http://bit.ly/dan-abramov",
54-
href: "http://bit.ly/dan-abramov",
55-
label: "daneabrahmov",
52+
name: "Sam Richards",
53+
src: "https://avatars.githubusercontent.com/u/8097623?v=4",
54+
href: "https://github.com/samajammin",
55+
label: "samajammin",
5656
},
5757
render: (args) => (
5858
<HStack className="gap-4">

src/layouts/stories/ContentLayout.stories.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ export const ContentLayout: StoryObj<typeof meta> = {
6464
maxDepth: 2,
6565
contributors: [
6666
{
67-
login: "github",
68-
avatar_url: "/",
69-
html_url: "https://github.com",
67+
login: "samajammin",
68+
avatar_url: "https://avatars.githubusercontent.com/u/8097623?v=4",
69+
html_url: "https://github.com/samajammin",
7070
date: "2025-04-20T12:00:00.000Z",
7171
},
7272
{
73-
login: "crowdin",
74-
avatar_url: "/",
75-
html_url: "https://crowdin.com",
73+
login: "samajammin",
74+
avatar_url: "https://avatars.githubusercontent.com/u/8097623?v=4",
75+
html_url: "https://github.com/samajammin",
7676
date: "2025-04-20T12:00:00.000Z",
7777
},
7878
],

0 commit comments

Comments
 (0)