Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed Dec 6, 2024
1 parent 271591e commit 919ca74
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/backend/src/utils/ingest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,5 +313,4 @@ export async function ingestChatEvent(
UPDATE run SET ${sql({ ...shared, ...update })} WHERE id = ${previousRun.id}
`;
}
// console.log(operation, update, shared, "\n\n");
}
Empty file.
2 changes: 0 additions & 2 deletions packages/frontend/pages/dashboards/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ export default function Dashboard() {

const [isEditing, setIsEditing] = useState(false);

console.log(granularity, dashboardIsLoading);

useEffect(() => {
if (!dashboardIsLoading && dashboard) {
setChecks(dashboard.checks);
Expand Down
1 change: 0 additions & 1 deletion packages/frontend/utils/dataHooks/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function useAnalyticsChartData<T>(
firstDimensionKey: string | null = null,
secondDimensionKey: string | null = null,
) {
console.log(granularity);
const timeZone = new window.Intl.DateTimeFormat().resolvedOptions().timeZone;
const checksParam = checks ? `&checks=${serializeLogic(checks)}` : "";
const { data, isLoading, error } = useProjectSWR<T[]>(
Expand Down
2 changes: 0 additions & 2 deletions packages/shared/dashboards/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export const chartProps: Record<string, Chart> = {
type: "Area",
dataKey: "tokens",
aggregationMethod: "sum",
splitBy: "name",
},
costs: {
id: "costs",
Expand All @@ -85,7 +84,6 @@ export const chartProps: Record<string, Chart> = {
type: "Area",
dataKey: "costs",
aggregationMethod: "sum",
splitBy: "name",
},
errors: {
id: "errors",
Expand Down

0 comments on commit 919ca74

Please sign in to comment.