0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-24 22:46:02 -05:00

chore: remove stray console logs

This commit is contained in:
bholmesdev 2024-03-01 14:21:57 -05:00
parent c2e2721c39
commit 5c467c6713

View file

@ -2,10 +2,8 @@
/// <reference path="../../.astro/db-types.d.ts" />
import { Author, db, Themes } from 'astro:db';
console.log('app::querying');
const authors = await db.select().from(Author);
const themes = await db.select().from(Themes);
console.log('app::query complete');
---
<h2>Authors</h2>