Skip to content

Commit d6fae2d

Browse files
fredshemaJacquelineTuyisenge
authored andcommitted
ch: add redirect handler (#508)
fix: linting errors fix: fallback handler
1 parent 10b59d2 commit d6fae2d

File tree

11 files changed

+3221
-4060
lines changed

11 files changed

+3221
-4060
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"sourceType": "module"
2020
},
2121
"plugins": ["react", "@typescript-eslint"],
22-
"ignorePatterns": ["/root/webpack.config.js"],
22+
"ignorePatterns": ["/root/vite.config.ts"],
2323
"rules": {
2424
"no-console": ["error"],
2525
"import/extensions": "off",

.github/workflows/do.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Login to Digital Ocean and create a directory
22

33
on:
4-
push:
4+
pull_request:
55
branches:
66
- develop
77

index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,14 @@
4141
rel="stylesheet"
4242
/> -->
4343

44-
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
45-
44+
<link
45+
href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap"
46+
rel="stylesheet"
47+
/>
4648
</head>
4749
<body class="dark:bg-dark-frame-bg">
4850
<div id="tree"></div>
51+
<script type="module" src="/src/index.tsx"></script>
4952
</body>
5053
</html>
5154
<!DOCTYPE html>
@@ -90,8 +93,10 @@
9093
href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital@1&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
9194
rel="stylesheet"
9295
/> -->
93-
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap" rel="stylesheet">
94-
96+
<link
97+
href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap"
98+
rel="stylesheet"
99+
/>
95100
</head>
96101
<body>
97102
<div id="tree"></div>

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-dupe-keys */
22
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
3-
module.exports = {
3+
export default {
44
preset: 'ts-jest',
55
testEnvironment: 'jsdom',
66
verbose: true,

0 commit comments

Comments
 (0)