Skip to content

Commit

Permalink
chore: format correctly html files
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Oct 14, 2024
1 parent 3247c50 commit 2e8b12b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 43 deletions.
4 changes: 2 additions & 2 deletions .storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<script>
window.global = window;
</script>
window.global = window
</script>
25 changes: 4 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,17 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href='/favicon.ico' />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Open source research data repository software"
/>
<link rel="apple-touch-icon" href='/logo192.png' />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href='/manifest.json' />
<meta name="description" content="Open source research data repository software" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>Dataverse</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
<script type="module" src="/src/index.tsx"></script>
</html>
4 changes: 2 additions & 2 deletions packages/design-system/.storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<script>
window.global = window;
</script>
window.global = window
</script>
18 changes: 9 additions & 9 deletions packages/design-system/tests/support/component-index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Components App</title>
</head>
<body>
<div data-cy-root></div>
</body>
</html>
</head>
<body>
<div data-cy-root></div>
</body>
</html>
18 changes: 9 additions & 9 deletions tests/support/component-index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Components App</title>
</head>
<body>
<div data-cy-root></div>
</body>
</html>
</head>
<body>
<div data-cy-root></div>
</body>
</html>

0 comments on commit 2e8b12b

Please sign in to comment.