Skip to content

Commit

Permalink
fix: Remove developer console link
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjcsmith committed Dec 3, 2024
1 parent a76eda1 commit c6bd3b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 0 additions & 8 deletions app/app/clusters/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { ClusterCard } from "@/components/cluster-card";
import { CreateClusterButton } from "@/components/create-cluster-button";
import { auth } from "@clerk/nextjs";
import { Lightbulb } from "lucide-react";
import Link from "next/link";

export const metadata = {
title: "Clusters",
Expand All @@ -29,13 +28,6 @@ async function App() {
<div className="p-6">
<div className="">
<h1 className="text-2xl">Clusters</h1>
<p className="text-gray-500 text-sm">
Select a cluster to view details. You can create clusters from your{" "}
<Link className="underline" href="https://console.inferable.ai">
developer console
</Link>
.
</p>
</div>
<div className="h-4" />

Expand Down
3 changes: 2 additions & 1 deletion examples/pg-stat-analysis/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { readFileSync, writeFileSync, existsSync } from 'fs';
import { Inferable } from 'inferable';
import { join } from 'path';
import { z } from 'zod';

const HISTORY_PATH = path.join(__dirname, 'history.json')
const HISTORY_PATH = join(__dirname, 'history.json')

if (!existsSync(HISTORY_PATH)) {
writeFileSync(HISTORY_PATH, JSON.stringify({ suggestions: [] }));
Expand Down

0 comments on commit c6bd3b3

Please sign in to comment.