このコミットが含まれているのは:
2026-02-05 00:45:18 +09:00
コミット a39b86c456
3個のファイルの変更13行の追加6行の削除
+4 -2
ファイルの表示
@@ -1,4 +1,4 @@
import React, { useEffect, useState } from 'react'
import { useEffect, useState } from 'react'
import { Helmet } from 'react-helmet-async'
import PrefetchLink from '@/components/PrefetchLink'
@@ -7,6 +7,8 @@ import MainArea from '@/components/layout/MainArea'
import { SITE_TITLE } from '@/config'
import { apiGet } from '@/lib/api'
import type { FormEvent } from 'react'
import type { WikiPage } from '@/types'
@@ -19,7 +21,7 @@ export default () => {
setResults (await apiGet ('/wiki', { params: { title } }))
}
const handleSearch = (ev: React.FormEvent) => {
const handleSearch = (ev: FormEvent) => {
ev.preventDefault ()
search ()
}