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 07e440a commit ada797bCopy full SHA for ada797b
app/composables/useBlogPostBlueskyLink.ts
@@ -74,10 +74,10 @@ export function useBlogPostBlueskyLink(slug: MaybeRefOrGetter<string | null | un
74
postUri: `at://${facetRecord.did}/app.bsky.feed.post/${facetRecord.rkey}`,
75
}
76
77
- } catch {
+ } catch (error: unknown) {
78
// Constellation unavailable or error - fail silently
79
// But during dev we will get an error
80
- if (import.meta.dev) console.error('[Bluesky] Constellation error:', err)
+ if (import.meta.dev) console.error('[Bluesky] Constellation error:', error)
81
82
83
return null
0 commit comments