diff options
| author | Kit Langton <[email protected]> | 2026-04-15 23:54:21 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-16 03:54:21 +0000 |
| commit | 9f4b73b6a330dc606faa22e44454638fa45e49ba (patch) | |
| tree | ccca7b3561e99a3fb57a9b8980277ea44764ecc6 /packages/console/app/src | |
| parent | bd2900483150d690acdc53acb37e98eda7bb7fe5 (diff) | |
| download | opencode-9f4b73b6a330dc606faa22e44454638fa45e49ba.tar.gz opencode-9f4b73b6a330dc606faa22e44454638fa45e49ba.zip | |
fix: clean up final 16 no-unused-vars warnings (#22751)
Diffstat (limited to 'packages/console/app/src')
| -rw-r--r-- | packages/console/app/src/routes/index.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/console/app/src/routes/index.tsx b/packages/console/app/src/routes/index.tsx index ee40ded87..c046a56a2 100644 --- a/packages/console/app/src/routes/index.tsx +++ b/packages/console/app/src/routes/index.tsx @@ -12,7 +12,6 @@ import { Header } from "~/component/header" import { Footer } from "~/component/footer" import { Legal } from "~/component/legal" import { github } from "~/lib/github" -import { createMemo } from "solid-js" import { config } from "~/config" import { useI18n } from "~/context/i18n" import { useLanguage } from "~/context/language" @@ -30,7 +29,7 @@ function CopyStatus() { export default function Home() { const i18n = useI18n() const language = useLanguage() - const githubData = createAsync(() => github()) + const _githubData = createAsync(() => github()) const handleCopyClick = (event: Event) => { const button = event.currentTarget as HTMLButtonElement const text = button.textContent |
