Skip to content

Commit

Permalink
Resolve linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanKingston committed Aug 17, 2022
1 parent 5649996 commit 6197edf
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion adClickFlow/pub/product.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2><a href="/checkout.html" id="buy-now-heading"></a></h2>

<main></main>

<script type="module" src="index.js"></script>
<script type="module" src="index.mjs"></script>
<script type="module">
import { initializeBoilerplate } from './shared/utils.mjs'
initializeBoilerplate()
Expand Down
2 changes: 1 addition & 1 deletion adClickFlow/serp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h2><a href="#"></a></h2>
}
</style>

<script type="module" src="index.js"></script>
<script type="module" src="index.mjs"></script>

</body>
</html>
File renamed without changes.
1 change: 0 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ app.all('*', (req, res, next) => {
if (isPayHostname(req)) {
req.url = joinPath(AD_FLOW, '/pay/', req.path);
app.handle(req, res);
return;
}
});

Expand Down

0 comments on commit 6197edf

Please sign in to comment.