Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Dec 5, 2023
1 parent adad11f commit 65ea35a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/connect/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ if (redirects) {
const matcher = new RegExp(redirects.join("|"));
const hash = window.location.hash;
if (matcher.test(hash)) {
window.location.href = `${advancedToolsHref}${hash}`
window.location.href = `${advancedToolsHref}${hash}`;
}
}

// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<ThemeProvider theme={theme}>
Expand Down

0 comments on commit 65ea35a

Please sign in to comment.