mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-29 07:41:13 +00:00
Fixing helmet theme bug. Fixes #628
This commit is contained in:
parent
9c2f70e5e0
commit
e99fd47958
1 changed files with 0 additions and 3 deletions
|
@ -38,7 +38,6 @@ export class Theme extends Component<Props> {
|
|||
} else {
|
||||
return (
|
||||
<Helmet>
|
||||
[
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
|
@ -46,7 +45,6 @@ export class Theme extends Component<Props> {
|
|||
id="default-light"
|
||||
media="(prefers-color-scheme: light)"
|
||||
/>
|
||||
,
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
|
@ -54,7 +52,6 @@ export class Theme extends Component<Props> {
|
|||
id="default-dark"
|
||||
media="(prefers-color-scheme: no-preference), (prefers-color-scheme: dark)"
|
||||
/>
|
||||
];
|
||||
</Helmet>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue