Skip to content

Commit 6157750

Browse files
committed
fix: added dots for gallery
1 parent 207f994 commit 6157750

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

platforms/metagram/src/lib/fragments/Post/Post.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const Primary = {
1515
args: {
1616
avatar: 'https://www.gravatar.com/avatar/2c7d99fe281ecd3bcd65ab915bac6dd5?s=250',
1717
username: 'blurryface',
18-
imgUri: [
18+
imgUris: [
1919
'https://graphicsfamily.com/wp-content/uploads/edd/2023/01/Free-Photographer-Social-Media-Post-Design-Template-870x870.jpg',
2020
'https://picsum.photos/200'
2121
],

platforms/metagram/src/lib/fragments/Post/Post.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
interface IPostProps extends HTMLAttributes<HTMLElement> {
1616
avatar: string;
1717
username: string;
18-
imgUri: string[];
18+
imgUris: string[];
1919
postAlt?: string;
2020
text: string;
2121
count: {

platforms/metagram/src/routes/(protected)/home/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<Post
9090
avatar={post.avatar}
9191
username={post.username}
92-
imgUri={post.imgUri}
92+
imgUris={post.imgUri}
9393
postAlt={post.postAlt}
9494
text={post.text}
9595
time={post.time}

0 commit comments

Comments
 (0)