diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 7e7e97f..c036862 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -2,7 +2,7 @@ name: Publish on GitHub Pages on: push: - branches: + branches: - main permissions: diff --git a/.lume/_includes/layouts/problem.tsx b/.lume/_includes/layouts/problem.tsx index a3f4d72..b608e1f 100644 --- a/.lume/_includes/layouts/problem.tsx +++ b/.lume/_includes/layouts/problem.tsx @@ -51,34 +51,34 @@ export default (data: Data, helpers: Lume.Helpers) => {

Solution for Part One

- {hasPartOne ? ( - <> -

- - Part one on Github - -

-
- - ) : ( -

No solution provided yet.

- )} + {hasPartOne + ? ( + <> +

+ + Part one on Github + +

+
+ + ) + :

No solution provided yet.

}

Solution for Part Two

- {hasPartTwo ? ( - <> -

- - Part two on Github - -

-
- - ) : ( -

No solution provided yet.

- )} + {hasPartTwo + ? ( + <> +

+ + Part two on Github + +

+
+ + ) + :

No solution provided yet.

} ); }; diff --git a/_config.ts b/_config.ts index b13e26c..145ec1e 100644 --- a/_config.ts +++ b/_config.ts @@ -22,7 +22,7 @@ site.use( }, }, }, - }) + }), ); site.use(postcss()); site.use(jsx());