File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @react-email/code-block " : patch
3
+ ---
4
+
5
+ Fix typo in the PrismLanguage type
Original file line number Diff line number Diff line change 1
1
/* eslint-disable react/no-array-index-key */
2
2
import * as React from "react" ;
3
- import type { PrismLangauge } from "./languages-available" ;
3
+ import type { PrismLanguage } from "./languages-available" ;
4
4
import type { Theme } from "./themes" ;
5
5
import { Prism } from "./prism" ;
6
6
@@ -16,7 +16,7 @@ export type CodeBlockProps = Readonly<{
16
16
fontFamily ?: string ;
17
17
18
18
theme : Theme ;
19
- language : PrismLangauge ;
19
+ language : PrismLanguage ;
20
20
code : string ;
21
21
} > ;
22
22
Original file line number Diff line number Diff line change 1
- export type PrismLangauge =
1
+ export type PrismLanguage =
2
2
| "markup"
3
3
| "html"
4
4
| "xml"
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ and the class names associated with them on a `<style>` tag on the `<head>` elem
77
77
78
78
### The treatment for Tailwind's CSS variables
79
79
80
- Emails don't really have great support for CSS variables,
81
- so we needed to use a custom postcss plugin alongisde Tailwind to resolve
80
+ Emails don't really have great support for CSS variables,
81
+ so we needed to use a custom postcss plugin alongisde Tailwind to resolve
82
82
all of these variables. When the plugin finds a CSS Variable that it cannot resolve,
83
83
it leaves it without any changes.
84
84
You can’t perform that action at this time.
0 commit comments