Skip to content

Commit

Permalink
Move meta tags above link tags
Browse files Browse the repository at this point in the history
Meta tags should be above link tags.

Also slightly adjust indent.
  • Loading branch information
x753 committed Sep 10, 2024
1 parent 8645fae commit 58f906d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/cyberstorm-remix/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ function Root() {
return (
<html lang="en">
<head>
<meta name="msapplication-TileColor" content="#29295b" />
<meta name="theme-color" content="#29295b" />
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<link
rel="apple-touch-icon"
sizes="180x180"
Expand All @@ -151,18 +156,13 @@ function Root() {
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#23ffb0" />
<meta name="msapplication-TileColor" content="#29295b" />
<meta name="theme-color" content="#29295b" />
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
</head>
<body>
<script
dangerouslySetInnerHTML={{
__html: `window.ENV = ${JSON.stringify(
parsedLoaderOutput.envStuff.ENV
parsedLoaderOutput.envStuff.ENV,

Check failure

Code scanning / ESLint

Delete , Error

Delete ,
)}`,
}}
/>
Expand All @@ -183,8 +183,8 @@ function Root() {
<div className={styles.sideContainers}>
{shouldShowAds
? adContainerIds.map((cid, k_i) => (
<AdContainer key={k_i} containerId={cid} noHeader />
))
<AdContainer key={k_i} containerId={cid} noHeader />

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
))

Check failure

Code scanning / ESLint

Insert ·· Error

Insert ··
: null}
</div>
</section>
Expand Down

0 comments on commit 58f906d

Please sign in to comment.