Skip to content

Commit df30449

Browse files
committed
Fix disappearing CSS
1 parent dbf245d commit df30449

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

beta/src/components/MDX/CodeBlock/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ const CodeBlock = function CodeBlock({
2929
<div className="sp-stack">
3030
<div className="sp-code-editor">
3131
<pre className="sp-cm sp-pristine sp-javascript flex align-start">
32-
<code className="sp-pre-placeholder grow-[2]">{highlightedCode}</code>
32+
<code className="sp-pre-placeholder grow-[2]">
33+
{highlightedCode}
34+
</code>
3335
</pre>
3436
</div>
3537
</div>

beta/src/pages/[[...markdownPath]].js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function reviveNodeOnClient(key, val) {
5555

5656
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5757
// ~~~~ IMPORTANT: BUMP THIS IF YOU CHANGE ANY CODE BELOW ~~~
58-
const DISK_CACHE_BREAKER = 4;
58+
const DISK_CACHE_BREAKER = 5;
5959
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6060

6161
import {prepareMDX, PREPARE_MDX_CACHE_BREAKER} from '../utils/prepareMDX';

0 commit comments

Comments
 (0)