Skip to content

Commit

Permalink
Remove debugging loggers, hide old 1.9 changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
mthierman committed Sep 28, 2023
1 parent 9852c1d commit df5ccb4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/components/download_button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ const {} = Astro.props;
let userAgent = window.navigator.userAgent;
let platform = window.navigator.platform;

console.log("User Agent is: " + userAgent);
console.log("Platform is: " + platform);
console.log(stable_xt_macos_url);
console.log(stable_xt_win_x64_url);

let platforms = {
mac: ["Macintosh", "MacIntel", "MacPPC", "Mac68K"],
windows: ["Win32", "Win64", "Windows", "WinCE"],
Expand Down
2 changes: 1 addition & 1 deletion src/components/nav.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { manual } = Astro.props;
@apply sticky top-0 z-50 flex select-none list-none place-content-center whitespace-nowrap bg-accentOrange;
}
#nav {
@apply flex flex-row flex-wrap place-content-center items-center md:gap-2 bg-accentOrange p-0;
@apply flex flex-row flex-wrap place-content-center items-center bg-accentOrange p-0 md:gap-2;
}
li {
@apply relative bg-accentOrange;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/old-changelogs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const title = "Old Changelogs";
class={
id === "1.9.0.0"
? "flex flex-col gap-8"
: "flex flex-col gap-8"
: "hidden flex-col gap-8"
}
id={id + "-block"}>
<Content />
Expand Down

0 comments on commit df5ccb4

Please sign in to comment.