Skip to content

Commit 703a8f2

Browse files
committed
biome check
1 parent 5223385 commit 703a8f2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

website/src/components/ui/common/SearchWindow.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import type { FC } from "hono/jsx";
2-
import { CloseIcon } from "../../icons";
32
import { basePath } from "../../../metadata";
3+
import { CloseIcon } from "../../icons";
44

55
export const SearchWindow: FC = () => {
66
return (
77
<div class="flex flex-col max-h-[80vh]">
8-
<link href={`${basePath.replace(/\/$/, "")}/pagefind/pagefind-ui.css`} rel="stylesheet" />
8+
<link
9+
href={`${basePath.replace(/\/$/, "")}/pagefind/pagefind-ui.css`}
10+
rel="stylesheet"
11+
/>
912
<script src={`${basePath.replace(/\/$/, "")}/pagefind/pagefind-ui.js`} />
1013
<div class="flex justify-between items-center p-4 border-b border-gray-200 flex-shrink-0">
1114
<h2 class="text-lg font-semibold">検索</h2>

website/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ssgPlugins =
2626
rules: [{ userAgent: "*", allow: ["/"] }],
2727
sitemapUrl: "https://typst-jp.github.io/sitemap.xml",
2828
}),
29-
]
29+
]
3030
: [];
3131

3232
export default defineConfig({

0 commit comments

Comments
 (0)