We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988a023 commit b5661abCopy full SHA for b5661ab
1 file changed
app/src/lib/components/ui/readme-renderer.svelte
@@ -77,6 +77,9 @@
77
node.type === 'element' && (node as Element).tagName === 'h1'
78
},
79
content: (status) => {
80
+ if (!status) {
81
+ return null;
82
+ }
83
return createBlockquote(getStatusMessage(status));
84
85
data: project.workStatus
@@ -112,7 +115,7 @@
112
115
</script>
113
116
114
117
<Section
- class="mx-8 my-8 prose snap-none dark:prose-invert"
118
+ class="mx-auto my-8 prose dark:prose-invert"
119
onclick={(e) => interceptLinkClicks(e)}
120
role="link"
121
>
0 commit comments