We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a56151 commit c8b4917Copy full SHA for c8b4917
src/pages/Home.vue
@@ -61,7 +61,6 @@ export default {
61
'https://public.api.bsky.app/xrpc/app.bsky.feed.getAuthorFeed?actor=kabbagepatch.bsky.social',
62
);
63
const data = await res.json();
64
- console.log(data);
65
this.allBlueSkyImages = data.feed
66
.filter((item) => item.post.embed?.$type === 'app.bsky.embed.images#view')
67
.map((item) => ({
@@ -72,7 +71,6 @@ export default {
72
71
}))
73
.flatMap((item) => item.images);
74
this.blueSkyImages = this.allBlueSkyImages.slice(0, 10);
75
- console.log(this.blueSkyImages);
76
},
77
methods: {
78
loadMore() {
0 commit comments