Skip to content

Commit cb16506

Browse files
action-simongabrielmfern
andcommittedDec 2, 2024
fix(code-block): Typo "PrismLanguage" (#1783)
Co-authored-by: gabriel miranda <gabrielmfern@outlook.com>
1 parent 130caf1 commit cb16506

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed
 

‎.changeset/shaggy-beers-leave.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@react-email/code-block": patch
3+
---
4+
5+
Fix typo in the PrismLanguage type

‎packages/code-block/src/code-block.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable react/no-array-index-key */
22
import * as React from "react";
3-
import type { PrismLangauge } from "./languages-available";
3+
import type { PrismLanguage } from "./languages-available";
44
import type { Theme } from "./themes";
55
import { Prism } from "./prism";
66

@@ -16,7 +16,7 @@ export type CodeBlockProps = Readonly<{
1616
fontFamily?: string;
1717

1818
theme: Theme;
19-
language: PrismLangauge;
19+
language: PrismLanguage;
2020
code: string;
2121
}>;
2222

‎packages/code-block/src/languages-available.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export type PrismLangauge =
1+
export type PrismLanguage =
22
| "markup"
33
| "html"
44
| "xml"

‎packages/tailwind/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ and the class names associated with them on a `<style>` tag on the `<head>` elem
7777

7878
### The treatment for Tailwind's CSS variables
7979

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
8282
all of these variables. When the plugin finds a CSS Variable that it cannot resolve,
8383
it leaves it without any changes.
8484

0 commit comments

Comments
 (0)
Please sign in to comment.