diff --git a/components/admin/AdminBlockEditor.vue b/components/admin/AdminBlockEditor.vue
index bce6ae7..842f2e6 100644
--- a/components/admin/AdminBlockEditor.vue
+++ b/components/admin/AdminBlockEditor.vue
@@ -417,14 +417,6 @@ const normalizeTrailingTextBlock = () => {
isNormalizingTrailingBlock.value = true
- while (
- editorBlocks.value.length > 1
- && isBlankParagraphBlock(editorBlocks.value.at(-1))
- && isBlankParagraphBlock(editorBlocks.value.at(-2))
- ) {
- editorBlocks.value.pop()
- }
-
if (!isBlankParagraphBlock(editorBlocks.value.at(-1))) {
editorBlocks.value.push(createEditorBlock('paragraph'))
}
diff --git a/components/site/RightSidebar.vue b/components/site/RightSidebar.vue
index ac32b20..5de91c9 100644
--- a/components/site/RightSidebar.vue
+++ b/components/site/RightSidebar.vue
@@ -1,17 +1,28 @@
+
+