Skip to content

Commit

Permalink
Fix import order on code block renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
jackreimers committed Jan 20, 2024
1 parent e1ee365 commit 8fffb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/renderers/code-renderer-block.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script lang="ts">
import Prism from 'prismjs';
import 'prismjs/themes/prism.css';
import 'prismjs/components/prism-csharp';
import Prism from 'prismjs';
import Button from '$lib/components/buttons/button.svelte';
export let lang: string = '';
Expand Down

0 comments on commit 8fffb53

Please sign in to comment.