Skip to content

Commit

Permalink
fix: remove imports and add eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TiagoM13 committed Feb 4, 2024
1 parent 8513a3c commit 9748d54
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 36 deletions.
57 changes: 24 additions & 33 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,39 +1,30 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<meta name="author" content="Tiago Mota" />
<meta
name="description"
content="Este site traz informações sobre os diversos pokémons existente no mundo de Pokémon, sinta-se a vontade para descobrir informações sobre os seus pokémons favoritos."
/>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<meta name="author" content="Tiago Mota" />
<meta name="description"
content="Este site traz informações sobre os diversos pokémons existente no mundo de Pokémon, sinta-se a vontade para descobrir informações sobre os seus pokémons favoritos." />

<!-- Favicons - Icons -->
<link
rel="shortcut icon"
href="/star-pokemon-color-16.png"
type="image/png"
/>
<link
rel="shortcut icon"
href="/star-pokemon-color-32.png"
type="image/png"
/>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />

<title>Home - Pokédex</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
<!-- Favicons - Icons -->
<link rel="shortcut icon" href="/star-pokemon-color-16.png" type="image/png" />
<link rel="shortcut icon" href="/star-pokemon-color-32.png" type="image/png" />

<title>Home - Pokédex</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@
],
"author": "Tiago Mota",
"license": "ISC"
}
}
1 change: 0 additions & 1 deletion src/components/DetailsCard/__tests__/DetailsCard.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';

import { expect } from '@jest/globals';
import { act, fireEvent, render } from '@testing-library/react';
import { formatHeightWeight, getNumberOrderFormat } from '@utils';

Expand Down
1 change: 0 additions & 1 deletion src/components/DetailsCard/__tests__/ProgressBar.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';

import { render, waitFor } from '@testing-library/react';
import { debug } from 'console';

import { ProgressBar } from '../components';

Expand Down

0 comments on commit 9748d54

Please sign in to comment.