From 317615fd5c4db9f0df01ecc96462439e40ac22dc Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Tue, 11 Jul 2023 11:05:45 -0700 Subject: [PATCH] web: remove unused code --- web/app/download/page.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/web/app/download/page.tsx b/web/app/download/page.tsx index 09489dd8..4b10baeb 100644 --- a/web/app/download/page.tsx +++ b/web/app/download/page.tsx @@ -1,8 +1,5 @@ -import { Octokit } from '@octokit/rest' import { redirect } from 'next/navigation' -const octokit = new Octokit() - export default async function Download() { const res = await fetch('https://api.github.com/repos/jmorganca/ollama/releases', { next: { revalidate: 60 } }) const data = await res.json()