Skip to content

Commit

Permalink
fix(jsx-email): remove errant semicolon in ColorScheme component
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Dec 19, 2023
1 parent f4b8ed1 commit dfe366b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jsx-email/src/components/color-scheme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const ColorScheme: JsxEmailComponent<ColorSchemeProps> = ({ mode = 'norma
<>
<meta name="color-scheme" content={mode} />
<meta name="supported-color-schemes" content={mode} />
<style dangerouslySetInnerHTML={{ __html: style }} />;
<style dangerouslySetInnerHTML={{ __html: style }} />
</>
);
};
Expand Down

0 comments on commit dfe366b

Please sign in to comment.