remove unused variables

This commit is contained in:
Kim, Jimin 2025-03-18 14:04:48 +09:00
parent fe82775586
commit 21cd1d51a8
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ export async function getData(params: Params): Promise<Data> {
export async function fetchContent(contentID: string) { export async function fetchContent(contentID: string) {
try { try {
return await import(`@pompydev/content/dist/content${contentID}.json`) return await import(`@pompydev/content/dist/content${contentID}.json`)
} catch (err) { } catch {
return return
} }
} }

View file

@ -35,7 +35,7 @@ async function main() {
try { try {
fs.rmSync(outPath, { recursive: true }) fs.rmSync(outPath, { recursive: true })
// eslint-disable-next-line no-empty // eslint-disable-next-line no-empty
} catch (err) {} } catch {}
/** /**
* Checking * Checking