Skip to content

Commit

Permalink
Update actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
NotWoods committed Sep 20, 2023
1 parent 1b5508f commit 4c098dc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.32
deno-version: v1.37

- name: Verify formatting
run: deno fmt --check
Expand Down
8 changes: 7 additions & 1 deletion src/book.tsx
Expand Up @@ -79,7 +79,13 @@ export function generateTeaTableHtml(
teaList: readonly FormattedTeaDatabasePage[],
startingIndex: number,
) {
return <TeaTable caption={caption} teaList={teaList} startingIndex={startingIndex} />;
return (
<TeaTable
caption={caption}
teaList={teaList}
startingIndex={startingIndex}
/>
);
}

const listFormat = new Intl.ListFormat("en", {
Expand Down
2 changes: 1 addition & 1 deletion src/cover.tsx
Expand Up @@ -93,7 +93,7 @@ export async function generateSvgCover(
new URL("../assets/cover.svg", import.meta.url),
);

const closingTagIndex = svgTemplate.lastIndexOf('</svg');
const closingTagIndex = svgTemplate.lastIndexOf("</svg");
if (!closingTagIndex) {
throw new Error("Could not find </svg> tag in template");
}
Expand Down

0 comments on commit 4c098dc

Please sign in to comment.