Skip to content

Commit

Permalink
chore: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Dec 4, 2023
1 parent 3fc439d commit 8053a5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/home/render-github-issues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ export async function renderGitHubIssues(container: HTMLDivElement, issues: GitH
}

function issuesSynced() {
const issuesFull = JSON.parse(localStorage.getItem("githubIssuesFull"));
const gitHubIssuesFull = localStorage.getItem("githubIssuesFull");
if (!gitHubIssuesFull) return false;
const issuesFull = JSON.parse(gitHubIssuesFull);
if (!issuesFull) return false;
else return true;
}
Expand Down
4 changes: 2 additions & 2 deletions static/style/inverted-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
padding-left: 12px;
}
.preview h1 {
margin: 16px;
margin: 8px;
/* text-align: center; */
}
.preview a {
Expand Down Expand Up @@ -507,7 +507,7 @@
.preview-header {
display: flex;
align-items: center;
justify-content: space-between;
/* justify-content: space-between; */
margin-bottom: 8px;
}

Expand Down

0 comments on commit 8053a5b

Please sign in to comment.