Skip to content

Commit

Permalink
fix: typescript error in build
Browse files Browse the repository at this point in the history
  • Loading branch information
xtools-at committed Oct 22, 2023
1 parent 13c9b13 commit 283f20e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ via Github Actions & Pages:
- the build process pushes the build artifact to `main-build`
- setup Github Pages to serve a static site from `main-build`

In case of build issues, delete all Github Actions caches and the `main-build` branch, then re-run the job _"Deploy to Pages"_.

## **License**

This project is licensed under the [GNU General Public License v3.0](https://opensource.org/licenses/gpl-3.0.html) - see the [`COPYING`](COPYING) file for details.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ export default function Page() {
? {
backgroundImage: `url(${backgroundUrl})`,
backgroundRepeat: "no-repeat",
backgroundColor: (t) =>
backgroundColor: (t: any) =>
t.palette.mode === "light" ? t.palette.grey[50] : t.palette.grey[900],
backgroundSize: "cover",
backgroundPosition: "center",
Expand Down

0 comments on commit 283f20e

Please sign in to comment.