Skip to content

Commit

Permalink
Remove debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
teakivy committed Dec 8, 2024
1 parent b9bd9cf commit e5c9fa2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/routes/new/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { error } from "@sveltejs/kit";

export async function load() {
if (process.env.DISABLE_NEW?.toLowerCase() === "true") {
console.log("Disabled");
error(404, {
message: "Not Found",
});
Expand Down
1 change: 0 additions & 1 deletion frontend/src/routes/settings/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { error } from "@sveltejs/kit";

export async function load() {
if (process.env.DISABLE_NEW?.toLowerCase() === "true") {
console.log("Disabled");
error(404, {
message: "Not Found",
});
Expand Down

0 comments on commit e5c9fa2

Please sign in to comment.