Skip to content

Commit acf0e58

Browse files
author
DevComp
committed
🐛 Attempt to fix headers when redirecting from /get
1 parent 5a40a52 commit acf0e58

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.docusaurus
3+
*.log

src/pages/Get/index.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,7 @@
3232
useEffect(() => {
3333
window.location.href = `https://github.com/flightpkg/flight/releases/download/${version}/install.sh`;
3434
}, [])
35-
return (
36-
<Layout
37-
permalink="/versions"
38-
description="flightpkg - CLI Versions page listing all documented site versions"
39-
>
40-
<p>Loading data...</p>
41-
</Layout>
42-
);
35+
return ("Loading...");
4336
}
4437

4538
export default Get;

0 commit comments

Comments
 (0)