Skip to content

Commit

Permalink
comment out code line that was breaking the github pages build
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Sep 20, 2024
1 parent 27e39e7 commit d642914
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
- uses: EndBug/add-and-commit@v9
with:
add: "*"
author_name: "SSC format Bot"
author_email: "[email protected]"
author_name: "github-actions[bot]"
author_email: "github-actions[bot]@users.noreply.github.com"
message: "pnpm format"
3 changes: 2 additions & 1 deletion frontend/src/routes/admin/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
isLoggedIn.set(true);
}
}
updateIsLoggedIn();
// commented out for now to avoid breaking github pages build
// updateIsLoggedIn();
let isLoggedInValue: boolean;
const unsubscribe = isLoggedIn.subscribe((value) => {
Expand Down

0 comments on commit d642914

Please sign in to comment.