tangled
alpha
login
or
join now
finxol.io
/
blog
0
fork
atom
Personal blog
finxol.io
blog
0
fork
atom
overview
issues
pulls
pipelines
fix: add loading state
finxol.io
3 months ago
bdea9b80
c7f79e94
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
+6
-3
3 changed files
expand all
collapse all
unified
split
app
pages
posts
[...slug].vue
util
atproto.ts
deno.jsonc
+4
app/pages/posts/[...slug].vue
reviewed
···
93
93
94
94
<Suspense>
95
95
<BskyComments v-if="post.bskyCid" :cid="post.bskyCid" />
96
96
+
97
97
+
<template #fallback>
98
98
+
<h1 class="text-xl font-bold text-stone-600">Loading comments...</h1>
99
99
+
</template>
96
100
</Suspense>
97
101
98
102
</article>
-1
app/util/atproto.ts
reviewed
···
26
26
});
27
27
28
28
if (!ok) {
29
29
-
console.error(data);
30
29
console.error("Error fetching thread:", data.error);
31
30
return { $type: "app.bsky.feed.defs#notFoundPost" };
32
31
}
+2
-2
deno.jsonc
reviewed
···
1
1
{
2
2
"deploy": {
3
3
-
"org": "finxol",
4
4
-
"app": "blogging"
3
3
+
"org": "finxol",
4
4
+
"app": "blogging"
5
5
}
6
6
}